场景
- linux服务器为web服务器,windows为资源服务器
- 通过web服务器访问windows资源
实现方案
- 在windows服务器上新增ftp用户
- 为该用户指定共享的文件夹,并授权所有权限
- 在linux挂载该文件夹
实现语句如下
mount -t cifs //192.168.1.7/resource /mnt/resource -o noatime -o nodiratime -o username=ftp,password=123456ac,rw,uid=0,gid=0,dir_mode=0777,file_mode=0777
最后为linux项目下某个文件设置软链接 就OK了
网友评论