linux:centos 环境:lamp
一、安装及配置samba
yum –y install samba* –skip-broken
vim /etc/samba/smb.conf
[web]
path=/usr/local/apache2/htdocs/
browseable=yes
writable=yes
二、创建用户并且acl权限配置
1.useradd apache
2.setfacl -m u:apache:rwx -R /usr/local/apache2/htdocs
3.setfacl -m d:u:apache:rwx -R /usr/local/apache2/htdocs
三、修改apache进程执行者
1.vim /usr/local/apache2/etc/httpd.conf
User apache
Group apache
2./usr/local/apache2/bin/apachectl restart
3.ps –ef |grep httpd 查看httpd进程的执行者
四、创建samba用户
smbpasswd -a apache
五、启动samba服务
service smb restart
六、在windows中用”映射网络驱动器”挂载linux下网站根目录
1.我的电脑->工具->映射网络驱动器->设置共享文件夹
2.映射linux共享文件夹到windows下的Z盘:
\192.168.0.101\web 到Z盘
已有 0 条评论