CentOS挂载Windows共享目录

一,CentOS命令行下挂载Windows共享盘,可以通过 df 命令看见挂载成功:

mount -t cifs -o rw,username=xxx,password=xxx //192.168.101.32/shareFolder /home/Uploads

 

二,如果是Nginx + PHP应用,需要将运行Nginx的用户及组ID写入到挂载命令中,并指定 rw 参数:
我这里Nginx用户及组的ID都是1001

mount -t cifs -o rw,uid=1001,gid=1001,username=xxx,password=xxx //192.168.101.32/shareFolder  /home/Uploads

 

 

你可能感兴趣的:(PHP,Linux,Nginx)