Menu
  • HOME
  • TAGS

Host CIFS files on NGINX under Windows

windows,nginx,smb,cifs

Try root "//ip-address/share/files"; And make sure the user/pass on this unc share is the same as the user/pass nginx.exe is using....

Ubuntu Tomcat CIFS : Allow tomcat user to write file using Servlet

java,tomcat,ubuntu,cifs

Finally i solved the problem !! I run the tomcat service as coder user by modifying /etc/defaults/tomcat7. Also, i have to change permissions of few tomcat directories....

Mount SMB/CIFS share within a Docker container

linux,windows,docker,mount,cifs

Yes, Docker is preventing you from mounting a remove volume inside the container as a security measure. If you trust your images and the people who run them, then you can use the --privileged flag with docker run to disable these security measures. Further, you can combine --cap-add and --cap-drop...