一、配置防火牆
centos 7.0預設使用的是firewall作為防火牆。
1、關閉firewall:
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall開機啟動
2、關閉selinux
vi /etc/selinux/config
#selinux=enforcing #注釋掉
selinux=disabled #增加
:wq! #儲存退出
setenforce 0 #使配置立即生效
3.安裝apache
yum install httpd #根據提示,輸入y安裝即可成功安裝
systemctl start httpd.service #啟動apache
systemctl stop httpd.service #停止apache
systemctl restart httpd.service #重啟apache
systemctl enable httpd.service #設定apache開機啟動
4.安裝mariadb(mysql)
yum install mariadb mariadb-server #詢問是否要安裝,輸入y即可自動安裝,直到安裝完成
systemctl start mariadb.service #啟動mariadb
systemctl stop mariadb.service #停止mariadb
systemctl restart mariadb.service #重啟mariadb
systemctl enable mariadb.service #設定開機啟動
5、安裝php以及元件,使php支援 mariadb
yum install php php-mysql php-gd libjpeg* php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-bcmath php-mhash
#這裡選擇以上安裝包進行安裝,根據提示輸入y回車
systemctl restart mariadb.service #重啟mariadb
systemctl restart httpd.service #重啟apache
進入目錄,測試一下
cd /var/www/html
vi index.php #輸入下面內容
<?php
phpinfo();
?>
:wq! #儲存退出
環境 lamp環境搭建
以下命令全部使用root執行,如果不用root記得sudo apt update 更新一下可用軟體包列表 apt upgrade 更新已安裝的軟體包 apt install apache2 安裝apache2 systemctl start apache2 啟動apache apt install ...
lamp環境搭建
lamp環境搭建 第一步資源共享的方式 虛擬機器多作業系統 1 linux能夠連線網路 wget usr local program yum install 2 配置windows 光碟上安裝yum包 windows 能夠連線外網路 fip ssh 在 windows環境下安裝客戶端 依賴的是lin...
Lamp環境搭建
第一步 資源共享的方法 虛擬機器 多作業系統 iptables f 1 linux能夠連線網路 wget usr local program yum install 2 配置 windows 光碟上的安裝包 rpm格式 建議原始碼包 定製安裝 windows能夠連線外網路 ftp ssh 在 win...