runtime文件已经改成了777了还是无法写入
可能的解决方法:
(1) 修改项目的所属用户所属组, 如果服务器是apache,可以修改如下
chown -R apache:apache runtime
(2) 如果还是不行, 请查看selinux是否开启
查看selinux状态
[root@proxyin test]# sestatus
SELinux status: enabled
SELinuxfs mount: /selinux
Current mode: enforcing
Mode from config file: enforcing
Policy version: 24
Policy from config file: targeted
看selinux是否关闭、开启
[root@proxyin test]# getenforce
Enforcing
临时关闭selinux:(#0代表permissive,1代表enforcing;也可直接用permissive和enforcing)
[root@proxyin test]# setenforce 0
永久关闭selinux
#vi /etc/selinux/config
#SELINUX=enforcing #注释掉
#SELINUXTYPE=targeted #注释掉
SELINUX=disabled #增加
:wq! #保存退出
#setenforce 0 #使配置立即生效