CentOS7 + ownCloud搭建私有云网盘

为了方便文件的存储,了解到了ownCloud,决定试一试。查阅了不少的安装资料,进展不顺利,经过综合众家之言,终于搞定了,将方法记录下来,以便参考。CentOS+ownCloud

首先要有足够的权限。

在下列各部命令执行的过程中,注意需要互动的地方,输入Y,确定即可。

[root@1 ~]# yum -y install epel-release

[root@1 ~]#  rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm

[root@1 ~]#  yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof php56-php-gd php56-php-fpm php-gd

安装apache服务 
[root@1 ~]# yum install httpd*

安装Mariadb 数据库。
[root@1 ~]# yum  install mariadb*

启动Apache:
[root@1 ~]# systemctl start httpd

启动MariaDB:
[root@1 ~]# systemctl start mariadb

主角上场:ownCloud
ownCloud地址:https://download.owncloud.org/download/repositories/stable/owncloud/ 打开之后,选择CentOS,下面有相应的命令行,照办即可。中途也需要输入y,确定一次。
rpm --import https://download.owncloud.org/download/repositories/production/CentOS_7/repodata/repomd.xml.key

wget http://download.owncloud.org/download/repositories/production/CentOS_7/ce:stable.repo -O /etc/yum.repos.d/ce:stable.repo
yum clean all
yum install owncloud-files
CentOS7 + ownCloud搭建私有云网盘_第1张图片

安装完毕之后,在浏览器里输入:http://127.0.0.1/owncloud/ ,如下图,至此安装完成,剩下的就是配置了。

你可能感兴趣的:(CentOS7 + ownCloud搭建私有云网盘)