1. 程式人生 > >centos7安裝owncloud搭建個人雲服務器

centos7安裝owncloud搭建個人雲服務器

首先登錄服務器,安裝一些必要程序,因為本地源不支持一些程序的新版本,所以必須把源換一下
1、下載阿裏yum源並移動到yum目錄中,刪除其他源

wget  -nc http://mirrors.aliyun.com/repo/Centos-7.repo
mv Centos-7.repo /etc/yum.repos.d/
yum clean all           #清除yum本地緩存
yum makecache      #生成yum機制的本地緩存

2、接下來安裝程序

yum install httpd           #安裝apache
yum install mariadb-server mariadb               #數據庫
yum install php           #安裝PHP

3、配置數據庫

systemctl start mariadb.service
mysql_secure_installation       #進入配置  
Enter current password for root (enter for none):       #輸入原始root密碼,空密碼就回車
Set root password? [Y/n]        #是否設置root密碼
New password:       #輸入新密碼
Re-enter new password:       #再次輸入
Password updated successfully!
Reloading privilege tables..
 ... Success!
 Remove anonymous users? [Y/n]        #是否移除匿名用戶
 ... Success!
Disallow root login remotely? [Y/n]       #是否禁止遠程root登陸
 ... skipping.
Remove test database and access to it? [Y/n]       #是否刪除測試數據庫
Reload privilege tables now? [Y/n]           #重新載入
 ... Success!

4、下載owncloud

wget https://download.owncloud.org/community/owncloud-10.0.8.zip
解壓並移到/var/www/html/目錄中

#各系統版本repo文件對應的下載操作
CentOS 5
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo
CentOS 6
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
CentOS 7
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo


centos7安裝owncloud搭建個人雲服務器