Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - meksiabdou

Pages: [1]
1
Installation / Re: Installation on Redhat 7
« on: January 28, 2017, 03:32:31 PM »
edit hosts
# vi /etc/hosts
# hostname  srv1.example.com
# yum -y install wget
# yum -y update

install apache
# yum install httpd openssl mod_ssl
# systemctl restart httpd
# systemctl status httpd
# systemctl enable httpd

install mysql
# yum install mariadb mariadb-server mysql
# mysql_secure_installation
# systemctl restart mariadb
# systemctl status mariadb
# systemctl enable mariadb

install php7
# 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 php70w-opcache
# yum install php70w php70w-opcache php70w-common php70w-cli php70w-mysql php70w-pdo php70w-mbstring php70w-bcmath php70w-xml php70w-pgsql   

install pure-ftpd

# yum -y install pure-ftpd   
# systemctl enable pure-ftpd.service
# systemctl start pure-ftpd.service

install centos web-panel
# yum install -y wget
# cd /usr/local/src
# wget http://centos-webpanel.com/cwp-el7-latest
# sh cwp-el7-latest

Pages: [1]