資源描述:
《CentOS安裝配置》由會(huì)員上傳分享,免費(fèi)在線(xiàn)閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫(kù)。
1、CentOS7.0安裝配置LAMP服務(wù)器(Apache+PHP+MariaDB)一、配置防火墻,開(kāi)啟80端口、3306端口CentOS7.0默認(rèn)使用的是firewall作為防火墻,這里改為iptables防火墻。1、關(guān)閉firewall:systemctlstopfirewalld.service#停止firewallsystemctldisablefirewalld.service#禁止firewall開(kāi)機(jī)啟動(dòng)2、安裝iptables防火墻yuminstalliptables-services#安裝vi/etc/sysconfig/iptable
2、s#編輯防火墻配置文件#Firewallconfigurationwrittenbysystem-config-firewall#Manualcustomizationofthisfileisnotrecommended.*filter:INPUTACCEPT[0:0]:FORWARDACCEPT[0:0]:OUTPUTACCEPT[0:0]-AINPUT-mstate--stateESTABLISHED,RELATED-jACCEPT-AINPUT-picmp-jACCEPT-AINPUT-ilo-jACCEPT-AINPUT-mstate--s
3、tateNEW-mtcp-ptcp--dport22-jACCEPT-AINPUT-mstate--stateNEW-mtcp-ptcp--dport80-jACCEPT-AINPUT-mstate--stateNEW-mtcp-ptcp--dport3306-jACCEPT-AINPUT-jREJECT--reject-withicmp-host-prohibited-AFORWARD-jREJECT--reject-withicmp-host-prohibitedCOMMIT:wq!#保存退出systemctlrestartiptables.s
4、ervice#最后重啟防火墻使配置生效systemctlenableiptables.service#設(shè)置防火墻開(kāi)機(jī)啟動(dòng)二、關(guān)閉SELINUX(SElinux為每一個(gè)用戶(hù),程序,進(jìn)程,還有文件定義了訪(fǎng)問(wèn)還有傳輸?shù)臋?quán)限。)vi/etc/selinux/config#SELINUX=enforcing#注釋掉#SELINUXTYPE=targeted#注釋掉SELINUX=disabled#增加:wq!#保存退出setenforce0#不用重啟,使配置立即生效安裝:一、安裝Apacheyuminstallhttpd#根據(jù)提示,輸入Y安裝即可成功安裝sy
5、stemctlstarthttpd.service#啟動(dòng)apachesystemctlstophttpd.service#停止apachesystemctlrestarthttpd.service#重啟apachesystemctlenablehttpd.service#設(shè)置apache開(kāi)機(jī)啟動(dòng)在客戶(hù)端瀏覽器中打開(kāi)服務(wù)器IP地址,會(huì)出現(xiàn)下面的界面,說(shuō)明apache安裝成功二、安裝MariaDBCentOS7.0中,已經(jīng)使用MariaDB替代了MySQL數(shù)據(jù)庫(kù)1、安裝MariaDByuminstallmariadbmariadb-server#詢(xún)問(wèn)是
6、否要安裝,輸入Y即可自動(dòng)安裝,直到安裝完成systemctlstartmariadb.service#啟動(dòng)MariaDBsystemctlstopmariadb.service#停止MariaDBsystemctlrestartmariadb.service#重啟MariaDBsystemctlenablemariadb.service#設(shè)置開(kāi)機(jī)啟動(dòng)cp/usr/share/mysql/my-huge.cnf/etc/my.cnf#拷貝配置文件(注意:如果/etc目錄下面默認(rèn)有一個(gè)my.cnf,直接覆蓋即可)2、為root賬戶(hù)設(shè)置密碼mysql_s
7、ecure_installation首先是設(shè)置密碼,會(huì)提示先輸入密碼Entercurrentpasswordforroot(enterfornone):<–初次運(yùn)行直接回車(chē)設(shè)置密碼Setrootpassword?[Y/n]<–是否設(shè)置root用戶(hù)密碼,輸入y并回車(chē)或直接回車(chē)Newpassword:<–設(shè)置root用戶(hù)的密碼Re-enternewpassword:<–再輸入一次你設(shè)置的密碼其他配置Removeanonymoususers?[Y/n]<–是否刪除匿名用戶(hù),回車(chē)Disallowrootloginremotely?[Y/n]<–是否禁止ro
8、ot遠(yuǎn)程登錄,回車(chē),Removetestdatabaseandaccesstoit?[Y/n]<–是否刪除test數(shù)據(jù)庫(kù),