Centos7 ownCloud 설치

1455 단어 centos
yum 자체에 ownCloud 라이브러리가 없어요.
그래서 WonCloud 공식 설명서가 있어요.
CentOS_7 owncloud-files-10.0.10-1
Run the following shell commands as root to trust the repository.
   
rpm --import https://download.owncloud.org/download/repositories/production/CentOS_7/repodata/repomd.xml.key

Run the following shell commands as root to add the repository and install from there.
   
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

기본적으로 모두 설치가 끝났다.
기본값은 ip/owncloud 접근입니다. httpd에 구체적으로 설정되어 있습니다.
주로 아래의 문제입니다.
centos의 php 버전이 너무 낮습니다
1. 이전에 PHP 버전을 설치한 적이 있으면 먼저 삭제# yum remove php*
2.rpm 설치 PHP7 해당 yum 소스
CentOS/RHEL 7.x: # rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm # rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
# yum install php70w
핵을 설치한 후에 owncloud에 들어가면 내부 서버 오류가 발생할 수 있습니다. 그것은 phpdom를 설치하지 않았기 때문입니다.
yum install php70w-dom
이제 홈페이지를 열 수 있어요.
그런데 아직 플러그인이 많이 부족해요.
# yum install php70w-intl
# yum install php70w-mbstring
# yum install php70w-gd
ps: 본고는 자신이 겪은 문제로만 설치 과정에서 발생한 다른 문제들은 잘 모르겠습니다.
nextcloud:https://docs.nextcloud.com/server/13/admin_manual/installation/php_70_installation.html
 

좋은 웹페이지 즐겨찾기