一、配置防火牆,開啟80埠、3306埠
centos 7.0預設使用的是firewall作為防火牆,這裡改為iptables防火牆。2、安裝iptables防火牆1、關閉firewall:
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall開機啟動
yum install iptables-services #安裝二、關閉selinuxvi /etc/sysconfig/iptables #編輯防火牆配置檔案
-a input -m state –state new -m tcp -p tcp –dport 80 -j accept
-a input -m state –state new -m tcp -p tcp –dport 3306 -j accept
:wq! #儲存退出
systemctl restart iptables.service #最後重啟防火牆使配置生效
systemctl enable iptables.service #設定防火牆開機啟動
vi /etc/selinux/config一、安裝apacheselinux=enforcing #注釋掉
selinuxtype=targeted #注釋掉
selinux=disabled #增加
:wq! #儲存退出
setenforce 0 #使配置立即生效
1,yum install httpd #根據提示,輸入y安裝即可成功安裝8,現在再訪問即可2,systemctl start httpd.service #啟動apache
3,systemctl stop httpd.service #停止apache
4,systemctl restart httpd.service #重啟apache
5,systemctl enable httpd.service #設定apache開機啟動
6,開啟本地瀏覽器輸入伺服器ip位址,會出現下面的介面,說明apache安裝成功
7,如若訪問不成功,則可能是埠問題或者安全組問題,請做如下修改即可:
預設為8080埠將其改為80埠
2,查詢listen配置段
3,修改listen後面的埠,預設是8080,這裡修改為80
4,輸入英文的冒號+wq,儲存並退出
5,修改後需要再次啟動httpd服務
9,安裝目錄介紹:
apache預設將**的根目錄指向/var/www/html 目錄二、mysql和php都有無需安裝(* ̄︶ ̄)預設的主配置檔案是/etc/httpd/conf/httpd.conf
配置儲存在的/etc/httpd/conf.d/目錄
在Centos7 0中配置lamp環境
第一步 安裝apache 1 輸入以下命令來開始安裝 apache 服務 2 在伺服器上上啟動 apache 3 瀏覽器輸入 ip 即可看到 apache 的歡迎頁面 4 apache 能夠開機啟動。使用以下命令 第二步 安裝mysql mariadb 1 用 yum 來獲取和安裝軟體 sudo y...
centos7 0 手動編譯 lamp環境
首先新建使用者 lamper,並新增 sodu許可權 兩種方法 is not in the sudoers file 解決 xx is not in the sudoers file 問題解決 然後 lamper iz62jhlmsymz wget http ftp.cuhk.edu.hk pub ...
centos7 0 下安裝git(ssh方式)
1 安裝依賴的庫 root localhost yum install curl devel expat devel gettext devel openssl devel zlib devel perl devel 2 刪除原本的安裝的git 4 編譯安裝 root localhost src t...