We're trying to mount a secured windows share on a linux server, but until now we're unable to do so. This is the setup we're having:
So the real question here is, what should we do so that we can access a secured shared windows folder in a java application run by a linux user? Is the mount a correct solution or do we need another approach. Thanks a lot!
You're trying to mount a CIFS share and you need to do so with a Windows username and password that has access:
mkdir /mnt/cifs
mount -t cifs //server-name/share-name /mnt/cifs -o username=shareuser,password=sharepassword,domain=nixcraft
Example Source: http://www.cyberciti.biz/faq/linux-mount-cifs-windows-share/
External links referenced by this document: