centos7源码安装apache
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7源码安装apache相关的知识,希望对你有一定的参考价值。
- 安装软件:
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.confServerRoot "/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的主要内容,如果未能解决你的问题,请参考以下文章