CentOS發(fā)布7.0版本,新版本帶來很多特性,除了內(nèi)核更新到3.10外,支持 Linux 容器、Open VMware Tools 及 3D 圖像能即裝即用,轉(zhuǎn)用 systemd、firewalld 及 GRUB2 ,而默認(rèn)的文件系統(tǒng)為XFS等等,可以說是比較重大的升級(jí)。筆者嘗試了使用Centos7搭建LAMP服務(wù)器平臺(tái),記錄如下。
1.啟用Apache2
Centos7默認(rèn)已經(jīng)安裝httpd服務(wù),只是沒有啟動(dòng)。如果你需要全新安裝,可以yum install -y httpd
啟動(dòng)服務(wù):systemctl start httpd.service
設(shè)置開機(jī)自動(dòng)啟動(dòng):systemctl enable httpd.service
HTTP服務(wù)器已經(jīng)啟動(dòng),進(jìn)行一下簡(jiǎn)單配置
vi /etc/httpd/conf/httpd.conf #編輯文件
ServerSignature On #添加,在錯(cuò)誤頁中顯示Apache的版本,Off為不顯示
Options Indexes FollowSymLinks #修改為:Options Includes ExecCGI FollowSymLinks(允許服務(wù)器執(zhí)行CGI及SSI,禁止列出目錄)
#AddHandler cgi-script .cgi #修改為:AddHandler cgi-script .cgi .pl (允許擴(kuò)展名為.pl的CGI腳本運(yùn)行)
AllowOverride None #修改為:AllowOverride All (允許.htaccess)
AddDefaultCharset UTF-8 #修改為:AddDefaultCharset GB2312?。ㄌ砑覩B2312為默認(rèn)編碼)
#Options Indexes FollowSymLinks #修改為 Options FollowSymLinks(不在瀏覽器上顯示樹狀目錄結(jié)構(gòu))
DirectoryIndex index.html #修改為:DirectoryIndex index.html index.htm Default.html Default.htm index.php(設(shè)置默認(rèn)首頁文件,增加index.php)
MaxKeepAliveRequests 500 #添加MaxKeepAliveRequests 500 (增加同時(shí)連接數(shù))
:wq! #保存退出
systemctl restart httpd.service #重啟apache
rm -f /etc/httpd/conf.d/welcome.conf /var/www/error/noindex.html #刪除默認(rèn)測(cè)試頁
2.設(shè)置防火墻
Centos7下的防火墻已經(jīng)由iptables改為firewall,使用firewall-cmd命令開放80及443端口:
firewall-cmd –permanent –zone=public –add-service=http
firewall-cmd –permanent –zone=public –add-service=https
firewall-cmd –reload
設(shè)置SELinux為permissive模式 命令行下 setenforce 0 立即生效,重啟失效。
編輯 vim/etc/sysconfig/selinux SELinux=enforcing 修改為disabled 關(guān)閉SELinux,重啟永久生效。
筆者ip為192.168.1.108,測(cè)試下服務(wù)器能否打開,瀏覽器http://192.168.1.108回車后看到歡迎頁面,說明服務(wù)器正常運(yùn)行。
3.安裝MariaDB數(shù)據(jù)庫
CentOS 7.0中,已經(jīng)使用MariaDB替代了MySQL數(shù)據(jù)庫,原因你懂的,MYSQL被Oracle收購以后,前景堪憂,所以MYSQL兄弟MariaDB就出來了,繼續(xù)開源事業(yè)。
安裝:yum -y install mariadb-server mariadb
啟動(dòng):systemctl start mariadb.service
systemctl enable mariadb.service
配置:cp /usr/share/mysql/my-huge.cnf /etc/my.cnf 覆蓋原配置就好了。
設(shè)置數(shù)據(jù)庫管理員密碼:mysql_secure_installation 一路y就可以了,當(dāng)然第一次y后面要輸入兩次密碼。
4.安裝PHP5
安裝PHP主程序: yum -y install php
安裝PHP組件,使PHP支持 MariaDB
yum -y install php-gd php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-snmp php-soap curl curl-devel
重啟: systemctl restart httpd.service
配置: vi /etc/php.ini
date.timezone = PRC #把前面的分號(hào)去掉,改為date.timezone = PRC
disable_functions = passthru,exec,system……#列出PHP可以禁用的函數(shù),如果某些程序需要用到這個(gè)函數(shù),可以刪除,取消禁用。
expose_php = Off #禁止顯示php版本的信息
short_open_tag = ON #支持php短標(biāo)簽
open_basedir = .:/tmp/ #設(shè)置表示允許訪問當(dāng)前目錄(即PHP腳本文件所在之目錄)和/tmp/目錄,可以防止php木馬跨站,如果改了之后安裝程序有問題(例如:織夢(mèng)內(nèi)容管理系統(tǒng)),可以注銷此行,或者直接寫上程序的目錄/data/www.osyunwei.com/:/tmp/
測(cè)試一下:vi /var/www/html/index.php 輸入<?php phpinfo(); ?> wq保存退出。打開http://192.168.1.108 如果能看到PHP配置信息頁,說明PHP服務(wù)器正常。
至此,LAMP平臺(tái)就搭建好了,您可以在上面搭建Worldpress網(wǎng)站了,當(dāng)然,如果你覺得數(shù)據(jù)庫管理起來比較麻煩的話,也可以用yum install phpMyAdmin安裝圖形化管理工具。
------------------------------------分割線------------------------------------
CentOS 6.5系統(tǒng)安裝配置LAMP(Apache+PHP5+MySQL)服務(wù)器環(huán)境 http://www.linuxidc.com/Linux/2014-12/111030.htm
Ubuntu 14.04 配置 LAMP+phpMyAdmin PHP(5.5.9)開發(fā)環(huán)境 http://www.linuxidc.com/Linux/2014-10/107924.htm
Windows 7下硬盤安裝Ubuntu 14.10圖文教程 http://www.linuxidc.com/Linux/2014-10/108430.htm
U盤安裝Ubuntu 14.10 http://www.linuxidc.com/Linux/2014-10/108402.htm
Ubuntu 14.10 正式發(fā)布下載 http://www.linuxidc.com/Linux/2014-10/108363.htm
Ubuntu 14.04 LTS 如何升級(jí)到 Ubuntu 14.10 http://www.linuxidc.com/Linux/2014-10/108381.htm
Ubuntu 14.10 下安裝 LAMP 服務(wù)圖文詳解 http://www.linuxidc.com/Linux/2014-12/110082.htm
------------------------------------分割線------------------------------------
更多CentOS相關(guān)信息見CentOS 專題頁面 http://www.linuxidc.com/topicnews.aspx?tid=14
本文永久更新鏈接地址:http://www.linuxidc.com/Linux/2015-06/118818.htm
聯(lián)系客服