資源貼:
apache簡介:
安裝expat包:
配置**:
make[2]: *** [exports.lo] error 1的解決方法:
前言:apache的安裝1、yum安裝 2、安裝包安裝
1、yum安裝需要有root許可權
博主沒有親自安裝,見資源貼:apache簡介
2、安裝包安裝,共需要四個
apr包
apr-util包
pcre包
httpd包
2.1.解壓縮
2.2.安裝apr
cd /data/zhyxpt/zhyxpt_zg/install_kit/apr-1.5.2
./configure --prefix=/data/zhyxpt/zhyxpt_zg/apr-1.5.2
make
make install
2.3 安裝apr-util
cd /data/zhyxpt/zhyxpt_zg/install_kit/apr-util-1.5.4/
./configure --prefix=/data/zhyxpt/zhyxpt_zg/apr-util-1.5.4 --with-apr=/data/zhyxpt/zhyxpt_zg/apr-1.5.2
make
make install
注:安裝出現xml/apr_xml.c:35:19: error: expat.h: no such file or directory,見資源貼:安裝expat包
2.4 安裝 pcre-8.37
cd /data/zhyxpt/zhyxpt_zg/install_kit/pcre-8.37
./configure --prefix=/data/zhyxpt/zhyxpt_zg/pcre-8.37 --with-apr=/data/zhyxpt/zhyxpt_zg/apr-1.5.2 -with-apr-util=/data/zhyxpt/zhyxpt_zg/apr-util-1.5.4
make
make install
2.5 安裝apache
3、apache的常用操作 切換到此目錄 /data/zhyxpt/zhyxpt_zg/httpd-2.4.27/bin/
啟動:./apachectl start
關閉:./apachectl stop
重啟:./apachectl restart
4、apache的配置,可參見資源貼:配置**
這邊配置乙個最簡單的埠轉換:再httpd-2.4.27/conf/httpd.conf檔案末尾追加
注意:配置完,需要重啟apache伺服器,如果出現不生效的情況,清除瀏覽器快取。
#訪問apache的所有80埠都會被監聽
#設定你的郵箱,apache異常是會往這邊發東西
serveradmin [email protected]
#你的專案所在地
documentroot "/usr/local/service"
#你的網域名稱,這邊表示只有www.test.cn:80會被監聽
servername www.test.cn
#你網域名稱的別名
serveralias test.cn
#出錯的日誌檔案
errorlog "logs/www.test.cn-error.log"
#日誌檔案
customlog "logs/www.test.cn-access.log" common
#設定監聽條件
options followsymlinks
allowoverride all
order allow,deny
allow from all
#反向**設定 /表明www.test.cn的所有檔案都會被重定向到
proxypass /
proxypassreverse /
#/test 表明只有www.test.cn/test的所有檔案都會被重定向到test
#proxypass /test test
#proxypassreverse /test test
proxypass和proxypassrerverse的作用 CentOS7 3安裝部署wordpress
centos7.3安裝部署wordpresswordpress簡介 wordpress是使用php語言開發的部落格平台,使用者可以在支援php和mysql資料庫的伺服器上架設屬於自己的 也可以把 wordpress當作乙個內容管理系統 cms 來使用。root luchao yum install ...
CentOS 7 3 安裝 PYTHON 環境
centos 7.4 預設 帶了 個 python2.7 環境 然 現在主流都是 python3 所以接下來再裝 個 python3 打造 個共存的環境。tar zxvf python 3.8.6.tgz則可以在當前 錄得到 件夾 python 3.8.6直接執 如下命令即可 yum install...
CentOS 7 3安裝配置Powerline
一 powerline簡介及演示環境 powerline 是乙個極棒的 vim編輯器的狀態列外掛程式,主要用於顯示狀態行和提示資訊。特點 github docs 演示環境 系統 centos linux release 7.3.1611 core python 版本 系統自帶的 2.7.5 bash...