更新時間:2019-10-29 來源:黑馬程序員 瀏覽量:
環(huán)境說明:當(dāng)前系統(tǒng)版本為RedHat8.0系統(tǒng)
1、基礎(chǔ)環(huán)境配置
(1)關(guān)閉防火墻和selinux
臨時關(guān)閉防火墻
[root@rhel8 ~]# systemctl stop firewalld.service
下次開機(jī)不自動啟動
[root@rhel8 ~]# systemctl disable firewalld.service
[root@rhel8 ~]# systemctl list-unit-files |grep firewalld
firewalld.service disabled
關(guān)閉selinux
[root@rhel8 ~]# setenforce 0
[root@rhel8 ~]# getenforce
Permissive
[root@rhel8 ~]# vim /etc/selinux/config
...
SELINUX=disabled
....
(2)配置本地軟件倉庫
手動掛載光盤到本地/mnt下
[root@rhel8 ~]# mount -o ro /dev/sr0 /mnt
開機(jī)自動啟動
[root@rhel8 ~]# echo "mount -o ro /dev/sr0 /mnt" >> /etc/rc.local
[root@rhel8 ~]# chmod +x /etc/rc.d/rc.local
修改配置文件指定軟件倉庫
[root@rhel8 ~]# cd /etc/yum.repos.d/
[root@rhel8 yum.repos.d]# cat local.repo
[BaseOS]
name=BaseOS yum
baseurl=file:///mnt/BaseOS/
enabled=1
gpgcheck=0
[App]
name=Appstream yum
baseurl=file:///mnt/AppStream/
enabled=1
gpgcheck=0
2、一鍵構(gòu)建LAMP環(huán)境
(1) 安裝Apache(httpd)軟件
說明:RedHat8默認(rèn)自帶httpd-2.4.37版本
[root@rhel8 ~]# yum install httpd -y(2)安裝PHP相關(guān)軟件
說明:RedHat8默認(rèn)php-7.2版本
yum -y install php-xml-7.2.11-1.module+el8+2561+1aca3413.x86_64 \(3) 安裝Mariadb數(shù)據(jù)庫軟件
說明:從RedHat7以后,系統(tǒng)默認(rèn)自帶Mariadb數(shù)據(jù)庫
[root@rhel8 ~]# yum install mariadb-server mariadb
3、啟動相應(yīng)服務(wù)
(1)啟動后臺數(shù)據(jù)庫
[root@rhel8 ~]# systemctl start mariadb.service(2)啟動前端web服務(wù)
[root@rhel8 ~]# systemctl start httpd.service4、測試是否可以解析php頁面
[root@rhel8 ~]# vim /var/www/html/index.php
推薦了解:黑馬程序員linux云計(jì)算+運(yùn)維開發(fā)培訓(xùn)課程。