2、解壓依賴包
進入安裝目錄
cd /opt/apr/
配置./configure --prefix=/usr/local/apr
編譯make
安裝make install
進入安裝目錄
cd /opt/apr-util/
./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr/bin/apr-1-config
make && make install
5、安裝pcre(pcre使用老版本,不用最新的
)進入安裝目錄
cd /opt/pcre/
./configure --prefix=/usr/local/pcre
make && make install
6、安裝apache
把解壓後的apr、apr-util、pcre放入httpd解壓後的srclib目錄下(關鍵)
需要用--with引數指定我們剛才安裝的依賴包位置
./configure --prefix=/usr/local/apache --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre --with-included-apr
make && make install
1、開啟系統--首選項--檔案管理;linux下雙擊資料夾時不要每次都開啟乙個新視窗
2、在開啟的視窗中切換到行為,選中「總是在瀏覽器視窗開啟「,然後點選關閉即可
三、搞定使用tar打包的應用軟體
如下圖這種方式,index2.html是無法訪問的:
原因如下:index2.html是使用者是root,使用者組是root,而index2.html對於其他使用者訪問許可權是「無」。
把index2.html屬性裡的其他(使用者)的訪問許可權設定為「唯讀」或者「讀寫」,便可以訪問index2.html,當然也要保證所有的上級目錄對其他使用者是可以訪問的。
linux命令大全:
在linux查詢當前使用者所在使用者組的使用者列表命令 groups; 試試id命令,顯示當前使用者,當前使用者所在使用者組資訊或whoami檢視當前所在使用者
命令 su shen/su - shen/sudo shen的區別
adduser shen新增使用者shen
passwd shen設定使用者shen的密碼
linux上安裝apache軟體
配置本地 yum源 vim etc yum.repos.d base.repo 沒有base.repo 的話請新建乙個 內容為 base 源標識name base 源名稱 baseurl file mnt enable 1 gpgcheck 0 mount dev sr0 mnt 將系統映象檔案掛載...
linux編譯安裝Apache
編譯安裝apache http server,目前最新的版本為2.4.41,做好apr,apr util,pcre的安裝後編譯安裝即可。三個 apr,apr util,pcre,已安裝的可以跳過。tar zxvf apr 1.7.0.tar.gz cd apr 1.7.0 configure pre...
linux編譯安裝Apache
編譯安裝apache http server,目前最新的版本為2.4.41,做好apr,apr util,pcre的安裝後編譯安裝即可。三個 apr,apr util,pcre,已安裝的可以跳過。tar zxvf apr 1.7.0.tar.gz cd apr 1.7.0 configure pre...