Centos 6.8 搭建owncloud 私有云盘

前端之家收集整理的这篇文章主要介绍了Centos 6.8 搭建owncloud 私有云盘前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Centos 6.8 搭建owncloud 私有云盘

系统:centos6.8 x86_64

discuz版本:owncloud-10.0.3.zip10.x版本需要的PHP至少5.6以上)

owncloud官网:https://owncloud.org/install/#edition

环境:

LAMP:直接yum 安装

#yum install httpd httpd-devel

#yum install MysqL MysqL-server MysqL-devel

#rpm -Uvh https://mirror.webtatic.com/yum/el6/latest.rpm

#yum install PHP70w PHP70w-bcmath PHP70w-cli PHP70w-common PHP70w-dba PHP70w-devel PHP70w-embedded PHP70w-enchant PHP70w-fpm PHP70w-gd PHP70w-imap PHP70w-interbase PHP70w-intl PHP70w-ldap PHP70w-mbstring PHP70w-mcrypt PHP70w-MysqL PHP70w-MysqLnd PHP70w-odbc PHP70w-opcache PHP70w-pdo PHP70w-pdo_dblib PHP70w-pear PHP70w-pecl-apcu PHP70w-pecl-imagick PHP70w-pecl-xdebug PHP70w-pgsql PHP70w-PHPdbg PHP70w-process PHP70w-pspell PHP70w-recode PHP70w-snmp PHP70w-soap PHP70w-tidy PHP70w-xml PHP70w-xmlrpc --skip-broken

设置服务开机启动

#chkconfig httpd on

#chkconfig MysqLd on

#chkconfig PHP-fpm on

启动apache和MysqL

#service httpd start

#service MysqLd start

开放防火墙:

#vi /etc/sysconfig/iptables

-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT

-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT

#service iptables restart

#iptables -nL 查看防火墙规则

安装owncloud

#yum install lrzsz

从官网下载owncloud-10.0.3.zip文件rz利用上传到/var/www/html

解压owncloud文件夹即为私有文件

#unzip owncloud-10.0.3.zip
#改变文件的所属用户和所属组

#chown -R apache.apache owncloud

浏览器下输入:服务ip/owncloud 例如:http://192.168.137.38/owncloud

wKiom1nVtYDCtCNxAA2Qv-4TAL0079.png-wh_50

初次登录要设置数据库名、账号和密码。

修改配置:

默认上传限制为2M,要修改PHP配置文件.

#vi /etc/PHP.ini

修改里面upload_max_filesize post_max_size自定义大小

然后重启httpd

#service httpd restart

再次登录owncloud

wKioL1nVtTaAvguQAAA3ki3J8Cg442.png-wh_50

原文链接:https://www.f2er.com/centos/375680.html

猜你在找的CentOS相关文章