CentOS 6 安裝LAMP(Apache+PHP+MySQL)

CentOS 6 安裝 Apache PHP MySQL

指令# sudo yum update

安裝Apache
指令# yum install httpd
設定開機啟動服務
指令# chkconfig --levels 35 httpd on
啟動httpd服務
指令# service httpd start

如果執行指令# service httpd start後出現
httpd: Could not reliably determine the server’s fully qualified domain name, using localhost.localdomain for ServerName
編輯httpd.conf
vi /etc/httpd/conf/httpd.conf
找到 #ServerName 移除#

開啟防火牆80 port
指令# vi /etc/sysconfig/iptables
新增這一行
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80-j ACCEPT
重新啟動iptables
指令# service iptables restart

安裝MySQL
指令# yum install mysql mysql-server -y
指令# service mysqld start
設定開機啟動服務
指令# chkconfig mysqld on

安裝PHP
指令# yum install php php-mysql -y
指令# yum install php-gd
指令# yum install php-xml
指令# yum install php-mbstring


指令# rpm -ivh http://mirrors.sohu.com/fedora-epel/6/x86_64/epel-release-6-8.noarch.rpm
指令# yum update
指令# yum install php-mcrypt



留言