centos7源碼安裝apache
阿新 • • 發佈:2018-09-13
version cgi lib allow uil efi exe 創建 start 安裝軟件:
a. httpd官方網站/下載地址:
安裝:
a. 安裝依賴:
配置:
a. 修改配置文件:
vim /etc/httpd/conf/httpd.conf
測試:
a. 啟動命令:
a. httpd官方網站/下載地址:
http://httpd.apache.org/download.cgi
或
https://github.com/dollarphper/soft/raw/master/apache/httpd-2.4.34.tar.gz
b. arp、arp-util官方網站:
http://apr.apache.org/download.cgi 或 https://github.com/dollarphper/soft/raw/master/apache/apr-1.6.3.tar.gz https://github.com/dollarphper/soft/raw/master/apache/apr-util-1.6.1.tar.gz
c. pcre官方網站:
https://www.pcre.org/
或
https://github.com/dollarphper/soft/raw/master/apache/pcre-8.42.tar.gz
a. 安裝依賴:
yum -y install expat-devel
yum -y install libxml2-devel
b. 解壓:
tar -xzf httpd-2.4.34.tar.gz
tar -xzf apr-1.6.3.tar.gz
tar -xzf apr-util-1.6.1.tar.gz
tar -xzf pcre-8.42.tar.gz
c. 移動apr、apr-util到httpd目錄下並重命名:
mv apr-1.6.3 httpd-2.4.34/srclib/apr
mv apr-util-1.6.1 httpd-2.4.34/srclib/apr-util
d. 安裝pcre:
d-1. 創建文件夾:
mkdir /etc/pcre
d-2. 進入pcre目錄:
cd pcre-8.42
d-3. 編譯安裝:
./configure --prefix=/etc/pcre
make && make install && make clean
e. 安裝apache:
e-1. 創建文件夾:
mkdir /etc/httpd
e-2. 進入apache目錄:
cd httpd-2.4.34
e-3. 編譯安裝:
./configure --prefix=/etc/httpd -with-pcre=/etc/pcre/bin/pcre-config -with-included-apr
make && make install && make clean
a. 修改配置文件:
vim /etc/httpd/conf/httpd.conf
ServerRoot "/etc/httpd"
ServerName lee
Listen 80
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authn_core_module modules/mod_authn_core.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule authz_core_module modules/mod_authz_core.so
LoadModule access_compat_module modules/mod_access_compat.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule reqtimeout_module modules/mod_reqtimeout.so
LoadModule filter_module modules/mod_filter.so
LoadModule mime_module modules/mod_mime.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule env_module modules/mod_env.so
LoadModule headers_module modules/mod_headers.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule version_module modules/mod_version.so
LoadModule unixd_module modules/mod_unixd.so
LoadModule status_module modules/mod_status.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule dir_module modules/mod_dir.so
LoadModule alias_module modules/mod_alias.so
<IfModule unixd_module>
User daemon
Group daemon
</IfModule>
ServerAdmin [email protected]
<Directory />
AllowOverride none
Require all denied
</Directory>
DocumentRoot "/var/www/html"
<Directory "/var/www/html">
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
<Files ".ht*">
Require all denied
</Files>
ErrorLog "logs/error_log"
LogLevel warn
<IfModule log_config_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
CustomLog "logs/access_log" common
</IfModule>
<IfModule alias_module>
ScriptAlias /cgi-bin/ "/etc/httpd/cgi-bin/"
</IfModule>
<IfModule cgid_module>
</IfModule>
<Directory "/etc/httpd/cgi-bin">
AllowOverride None
Options None
Require all granted
</Directory>
<IfModule headers_module>
RequestHeader unset Proxy early
</IfModule>
<IfModule mime_module>
TypesConfig conf/mime.types
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
</IfModule>
<IfModule proxy_html_module>
Include conf/extra/proxy-html.conf
</IfModule>
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
b. 新建文件夾:
mkdir -p /var/www/html
a. 啟動命令:
/etc/httpd/bin/apachectl -k start
b. 停止命令:
/etc/httpd/bin/apachectl -k stop
c. 重啟命令:
/etc/httpd/bin/apachectl -k restart
d. 啟動apache:
e. 創建測試文件:
echo "hello world" > /var/www/html/index.html
f. 瀏覽器訪問:
centos7源碼安裝apache