kodexplorer更换存储目录
-
比如将/var/www/html/kodexplorer/data更换为/media/disk/data。为了确保data文件目录一致,可将/var/www/html/data复制/media/disk目录下。
-
修改/var/www/html/kodexplorer/config/config.php文件中的datadirector更改为/media/disk/data。
例如:
将'datadirectory' => '/var/www/kodexplorer/data'更改为'datadirectory' => '/media/disk/data'。
-
设置文件访问权限,在终端输入命令
chown -R apsche:apache /media/disk/data
chmod 777 /media/disk/data
-
更改SELinux模式,这一步是重点!
首先在终端查看SELinux状态。方法有以下几种。
(1) getenforce
(2) /usr/sbin/sestatus -v
其次,为了使kodexplorer正常更换存储目录,需要将SELinux模式设置为permissive或者disabled。方法有以下几种。
(1)setenforce 0 #这相当于设置SELinux 成为permissive模式,不需要重启
(2)编辑/etc/selinux/config 文件,将SELINUX=disabled,需要重启