Linux serverNETWORK ADMINISTRATIONS

How to install Joomla on CentOS 7

In this video, you will learn how to install Joomla on CentOS 7. You can find a full written tutorial at http://www.servermania.com/kb/articles/how-to-install-joomla-on-centos7/

30% Off – https://www.servermania.com/video-offers.htm

===

Commands:
setenforce 0
sed -i ‘s/enforcing/disabled/g’ /etc/selinux/config

yum install epel-release httpd php php-common php-mysqlnd php-mbstring php-gd mariadb-server mod_ssl zip wget unzip -y

sed -i ‘s/AllowOverride none/AllowOverride all/g’ /etc/httpd/conf/httpd.conf

systemctl start httpd && systemctl start mariadb

mysql
CREATE DATABASE joomla;
GRANT ALL PRIVILEGES ON joomla.* TO ‘joomla’@’localhost’ IDENTIFIED BY ‘Eh4wph8WItSO’;

wget https://github.com/joomla/joomla-cms/releases/download/3.6.4/Joomla_3.6.4-Stable-Full_Package.zip
unzip Joomla_3.6.4-Stable-Full_Package.zip -d /var/www/html/

chown -R apache:apache /var/www/html

—-
Like us on Facebook: https://www.facebook.com/servermaniainc/
Follow us on Twitter: https://twitter.com/servermaniainc/
Inquires welcome: social@servermania.com

source

centos 7

Leave a Reply

Your email address will not be published. Required fields are marked *