centos+php7.1+apache

前端之家收集整理的这篇文章主要介绍了centos+php7.1+apache前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
1.2Install Remi repository ## Remi Dependency on CentOS 6 and Red Hat (RHEL) 6 ## rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm ## CentOS 6 and Red Hat (RHEL) 6 ## rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm 1.3 Install Apache (httpd) Web server and PHP 7.1.0 yum --enablerepo=remi,remi-PHP71 install httpd PHP PHP-common 1.4 Install PHP 7.1.0 modules yum --enablerepo=remi,remi-PHP71 install PHP-pecl-apcu PHP-cli PHP-pear PHP-pdo PHP-MysqLnd PHP-pgsql PHP-pecl-mongodb PHP-pecl-memcache PHP-pecl-memcached PHP-pecl-redis PHP-pecl-memcached PHP-gd PHP-mbstring PHP-mcrypt PHP-xml PHP-pdo 1.5 Start Apache HTTP server (httpd) and autostart Apache HTTP server (httpd) on boot ## CentOS / RHEL 6.8 ## /etc/init.d/httpd start ## use restart after update ## OR ## service httpd start ## use restart after update 1.6 Create test PHP page to check that Apache,PHP and PHP modules are working vi /var/www/html/index.PHP <?PHP PHPinfo(); 2.1防火墙 nano -w /etc/sysconfig/iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT service iptables restart firewall-cmd --permanent --zone=public --add-service=http ## OR ## firewall-cmd --permanent --zone=public --add-port=80/tcp systemctl restart firewalld.service 原文链接:https://www.f2er.com/centos/378983.html

猜你在找的CentOS相关文章