一、httpd
root@localhost \~\]# systemctl stop firewalld \[root@www \~\]# systemctl disable firewalld \[root@localhost \~\]# systemctl disable firewalld \[root@localhost \~\]# setenforce 0 \[root@localhost \~\]# vim /etc/sysconfig/selinux \[root@localhost \~\]# rpm -e httpd --nodeps (检查是否安装httpd) 错误:未安装软件包 httpd \[root@localhost \~\]# yum -y install apr-util-devel pcre-devel gcc\*(开发环境) 安装所需的软件包 \[root@localhost \~\]# tar zxvf httpd-2.4.25.tar.gz (解压) \[root@localhost \~\]# cd httpd-2.4.25 \[root@localhost httpd-2.4.25\]# ./configure --prefix=/usr/local/httpd --enable-so --enable-rewrite --enable-charset-lite --enable-cgi --enable-deflate 备注: ./configure:指定安装包功能,配置 --prefix:路径前缀 制定程序的安装目录 --enable-so:启用动态加载模块DSO的支持,使httpd具备进一步扩展功能的能力 --enable-rewrite:启用网页地址重写功能,用于网站优化 --enable-charset-lite:启动字符集支持,以便支持使用各种字符集编码的网页 --enable-cgi:启用cgi脚本程序支持,扩展网站的应用访问能力;c通用g网关i接口 --enable-deflate:网页压缩 \[root@localhost httpd-2.4.25\]# make \&\& make install \[root@localhost httpd-2.4.25\]# ls /usr/local/httpd/ bin build cgi-bin conf error htdocs icons include logs man manual modules 备注: bin:命令 logs:存放日志 conf:存放配置文件 htdocs:网站文档 \[root@localhost \~\]# echo $PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin \[root@localhost \~\]# ln -s /usr/local/httpd/bin/\* /usr/local/bin/ (命令优化) \[root@localhost \~\]# httpd -v Server version: Apache/2.4.25 (Unix) Server built: Jun 11 2024 14:58:13 \[root@localhost \~\]# apachectl start \[root@localhost \~\]# netstat -anpt \| grep httpd \[root@localhost \~\]# vim /usr/local/httpd/conf/httpd.conf (关闭消息提示) \[root@localhost systemd\]# cd /lib/systemd/system \[root@localhost system\]# vim httpd.service (httpd系统服务,保持后缀名必须是.service) \[Unit
Description=zhangsan
After=network.target (在apache之后启动)
Service
Type=forking (启动方式)
PIDFile=/usr/local/httpd/logs/httpd.pid (文件放置位置)
ExecStart= /usr/local/bin/apachectl $OPTIONS (启动。关闭apachecyl)
ExecReload= /bin/kill -HUP $MAINPID (重载)
Install
WantedBy=multi-user.target (多用户目标)
root@localhost system\]# systemctl daemon-reload
\[root@localhost system\]# systemctl enable httpd.service
\[root@localhost system\]# systemctl start httpd
\[root@localhost system\]# netstat -anpt \| grep httpd
#### 1.虚拟主机(基于主机名)
虚拟主机(单个主机运行多个站点)
站点1:httpd---ip+80
站点2:httpd---ip+80
1. 基于ip的虚拟主机
2. 基于端口的虚拟主机
3.基于主机名的虚拟主机
\[root@localhost \~\]# cd /usr/local/httpd/htdocs/ (默认站点位置)
\[root@localhost htdocs\]# ls
index.html
102为虚拟主机提供域名解析
\[root@localhost \~\]# vim /etc/hosts
192.168.10.101 www.accp.com
192.168.10.101 www.benet.com
\[root@localhost \~\]# mkdir -p /var/www/html/accpcom (创建站点目录)
\[root@localhost \~\]# mkdir -p /var/www/html/benetcom
\[root@localhost \~\]# echo "www.accp.com"\>/var/www/html/accpcom/index.html
\[root@localhost \~\]# echo "www.benet.com"\>/var/www/html/benetcom/index.html
\[root@localhost \~\]# cd /usr/local/httpd/conf/
\[root@localhost conf\]# ls
extra httpd.conf magic mime.types original
\[root@localhost conf\]# cd extra/
\[root@localhost extra\]# ls
httpd-autoindex.conf httpd-info.conf httpd-mpm.conf httpd-userdir.conf
httpd-dav.conf httpd-languages.conf httpd-multilang-errordoc.conf httpd-vhosts.conf
httpd-default.conf httpd-manual.conf httpd-ssl.conf proxy-html.conf
\[root@localhost extra\]# vim httpd-vhosts.conf (虚拟主机)
\