1.将ftp用户加入到apache用户组
usermod -a -G apache ftpadmin
ftpadmin 为ftp用户
2.设置网站根目录/var/www的所有组为apache
chown -R :apache /var/www
3、设置网站根目录的权限为用户组有读写权限
chmod -R g+rw /var/www
修改后发现还是不行
vim /etc/httpd/conf/httpd.conf
user apacher
group apacher
修改为
user ftpadmin
group apacher
ok 在浏览器运行
设想 直接改成 apacher用户和用户组改成 ftp用户和用户组 就更简单了。
参考:http://www.2cto.com/os/201112/115709.html
时间: 2024-10-10 04:07:06