OwnCloud/Installation
From r00tedvw.com wiki
(Difference between revisions)
(→Requirements) |
(→Prerequisites) |
||
Line 10: | Line 10: | ||
=Prerequisites= | =Prerequisites= | ||
<nowiki>~$ sudo yum install -y epel-release | <nowiki>~$ sudo yum install -y epel-release | ||
− | ~$ sudo yum install -y httpd mariadb-server php php-gd php-intl php-mbstring php-process php-xml</nowiki> | + | ~$ sudo yum install -y httpd mariadb-server php php-gd php-intl php-mbstring php-process php-xml |
+ | ~$ systemctl enable httpd | ||
+ | ~$ systemctl start httpd</nowiki> | ||
=Setup Repo= | =Setup Repo= |
Revision as of 22:50, 16 April 2021
OwnCloud Installation
Contents |
Requirements
CentOS 7
LAMP stack.
- MariaDB 10+
- httpd 2.4+ with prefork and mod_php
- PHP 7.4+
- 512MB RAM
Prerequisites
~$ sudo yum install -y epel-release ~$ sudo yum install -y httpd mariadb-server php php-gd php-intl php-mbstring php-process php-xml ~$ systemctl enable httpd ~$ systemctl start httpd
Setup Repo
~$ sudo rpm --import https://download.owncloud.org/download/repositories/stable/CentOS_7/repodata/repomd.xml.key ~$ sudo curl -L https://download.owncloud.org/download/repositories/stable/CentOS_7/ce:stable.repo -o /etc/yum.repos.d/ownCloud.repo ~$ sudo yum clean expire-cache
Install OwnCloud
~$ sudo yum install -y owncloud
Set Firewall rules
~$ sudo firewall-cmd --permanent --zone=public --add-service=http ~$ sudo firewall-cmd --permanent --zone=public --add-service=https ~$ sudo firewall-cmd --reload
Setup MariaDB
~$ systemctl start mariadb.service ~$ mysql_secure_installation ~$ sudo mysql -u root -p mariadb> CREATE DATABASE owncloud; mariadb> GRANT ALL ON owncloud.* to 'owncloud'@'localhost' IDENTIFIED BY 'set_database_password'; mariadb> FLUSH PRIVILEGES; mariadb> exit