1、安裝Apache
創(chuàng)新互聯(lián)建站堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站建設(shè)、成都做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的東烏珠穆沁網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴![root@localhost ~]# yum -y install httpd
# 開機(jī)自啟動(dòng)
[root@localhost ~]# chkconfig httpd on
# 啟動(dòng)httpd 服務(wù)
[root@localhost ~]# service httpd start
### 安裝apache 一些擴(kuò)展
root@localhost ~]# yum -y install httpd-manual mod_ssl mod_perl mod_auth_mysql
應(yīng)該會(huì)看到Apache的測試頁面
這里需要注意iptables(如果是在虛擬主機(jī)裝,在本機(jī)訪問的話就要關(guān)閉防火墻chkconfig iptables off)
2、安裝配置MySQL
# mysql 客戶端程序
# mysql-server 服務(wù)端程序
# mysql-devel 開發(fā)設(shè)計(jì)的庫
[root@localhost ~]# yum -y install mysql mysql-server mysql-devel
# 開機(jī)啟動(dòng)
[root@localhost ~]# chkconfig mysqld on
# 啟動(dòng)mysqld服務(wù)
[root@localhost ~]# service mysqld start
# 進(jìn)行一些安全性配置
[root@localhost ~]# /usr/bin/mysql_secure_installation
[root@localhost ~]# netstat -tulpn | grep -i mysql
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 1723/mysqld
OK, 我們看到mysqld已經(jīng)啟動(dòng),監(jiān)聽在3306端口上。
3.安裝php5.6版本
由于centOS6.5的源php版本都比較低(php5.3),所以現(xiàn)在需要更換源
a.檢查當(dāng)前安裝的PHP包
yumlistinstalled|grepphp
如果有安裝的PHP包,先刪除他們
yumremovephp.x86_64php-cli.x86_64php-common.x86_64php-gd.x86_64php-ldap.x86_64php-mbstring.x86_64php-mcrypt.x86_64php-mysql.x86_64php-pdo.x86_64
配置yum源追加CentOS 6.5的epel及remi源。
1
2
以下是CentOS 7.0的源。
1
2
#yuminstallepel-release
#rpm-ivhmillecollet.com/enterprise/remi-release-7.rpm
使用yum list命令查看可安裝的包(Packege)。
1
#yumlist--enablerepo=remi--enablerepo=remi-php56|grepphp
安裝PHP5.6.xyum源配置好了,下一步就安裝PHP5.6。
1
#yuminstall--enablerepo=remi--enablerepo=remi-php56phpphp-opcachephp-develphp-mbstringphp-mcryptphp-mysqlndphp-phpunit-PHPUnitphp-pecl-xdebugphp-pecl-xhprof
用PHP命令查看版本。
1
2
3
4
5
6
#php--version
PHP5.6.0(cli)(built:Sep3201419:51:31)
Copyright(c)1997-2014ThePHPGroup
ZendEnginev2.6.0,Copyright(c)1998-2014ZendTechnologies
withZendOPcachev7.0.4-dev,Copyright(c)1999-2014,byZendTechnologies
withXdebugv2.2.5,Copyright(c)2002-2014,byDerickRethans
安裝PHP-fpmyuminstall--enablerepo=remi--enablerepo=remi-php56php-fpm
PS:
重啟httpd服務(wù)報(bào)錯(cuò)
httpd: Could not reliably determine the server\'s fully qualified domain name
解決:vi/etc/httpd/conf/http.conf
修改ServerNamelocalhost:80 注釋即可,然后重啟httpd
啟動(dòng)httpd 報(bào)錯(cuò) NameVirtualHost *:80 has no VirtualHost
解決:因?yàn)樵趆ttp.conf的打開NameVirtualHost *:80 前的注釋,然后再進(jìn)入conf.d文件夾里面的配置時(shí),還有同樣的NameVirtualHost *:80存在,那就會(huì)報(bào)錯(cuò)(多臺虛擬主機(jī))