CentOS6にファイル管理システム「owncloud」をインストールする

PHP7.2

MySQL

前もってcomposerをインストールする必要有

repoからインストールすると上手くいきそう

// PHP系インストール
yum -y install --enablerepo=remi,remi-php72 php php-devel php-mbstring php-pdo php-gd php-xml php-mcrypt php-common php-cli php-mysql openssl php-imagick php-curl php-pgsql php-mbclient php-ssh2 php-zip php-intl
// COMPOSERインストール
cd ~/
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
composer
// owncloudインストール
yum -y install wget
wget http://download.owncloud.org/download/repositories/stable/CentOS_6/ce:stable.repo -P /etc/yum.repos.d
rpm --import https://download.owncloud.org/download/repositories/9.1/CentOS_6/repodata/repomd.xml.key
wget http://download.owncloud.org/download/repositories/9.1/CentOS_6/ce:9.1.repo -O /etc/yum.repos.d/ce:9.1.repo
yum clean expire-cache
yum install owncloud

公式参考インストール

https://download.owncloud.org/download/repositories/9.1/owncloud/