创建owncloud
在xshell 下面 rz 来导入owncloud 10.1的安装包,
通过 unzip owncloud 来解压文件 (导入安装包时,导入目录位置即为当前目录)
通过 将解压后的文件owncloud cp到
cp * /var/www/html/
然后
[root@localhost html]# chmod 777 owncloud/
[root@localhost html]# chown -R apache:apache /var/www/html/owncloud/
来更改文件的权限 不然报以下错误
利用apache 在网页中打开
localhost/owncloud
如果还继续报
Can't write into config directory! This can usually be fixed by <a href="https://doc.owncloud.org/server/10.0/go.php?to=admin-dir_permissions" target="_blank" rel="noreferrer">giving the webserver write access to
错误,那么 使用以下命令
setsebool -P httpd_unified 1
setsebool -P httpd_execmem 1
重启 服务
systemctl restart httpd
缺少模块时
通过 rpm -ivh 来安装模块,或者yum install
缺什么补什么~~
成功
在第一次安装中选定为mysql数据库,(数据库中必须有输入的数据库)
mysql -u root -p
创建
create database onecloude;