前言
因篇幅问题,我将LAMP的原理和实操分开,本篇为实操部分,原理部分可去我的主页翻看。
链接:https://pan.baidu.com/s/1DJAwLc4vo3N06QsybI0V_w
提取码:lsna
本实验所需的软件包
1.实验开始前,对虚机做一些设置,我设置内存4G,处理器一共6核,这样可以提高mysql的编译效率。
2.再检查磁盘剩余的大小,整个项目大概需要十几个G,如果不够提早进行扩容
关于如何扩容我就不再单独写的,我再搭建过程的遇到磁盘空间不够搭建失败的问题,然后百度到了扩容方法,直接把连接放在这里
centos7扩容根目录(/dev/mapper/centos-root) - 知乎
一、编译安装Apache
1.1 关闭防火墙,将安装Apache所需的软件包传到/opt/目录下
systemctl stop firewalld systemctl disable firewalld setenforce 0
1.2 安装环境依赖包
使用网络源还是本地仓库都可
yum -y install gcc gcc-c++ make pcre pcre-devel expat-devel perl
1.3 配置软件模块
#解压软件包 cd /opt/ tar zxvf apr-1.6.2.tar.gz tar zxvf apr-util-1.6.0.tar.gz tar jxvf httpd-2.4.29.tar.bz2 #apr-1.6.2目录和apr-util-1.6.0目录,移动到/opt/httpd-2.4.29/srclib/目录下 mv apr-1.6.2 /opt/httpd-2.4.29/srclib/apr mv apr-util-1.6.0 /opt/httpd-2.4.29/srclib/apr-util #切换至httpd源代码包的释放目录,运行configure脚本,指定安装路径和安装模块 cd /opt/httpd-2.4.29/ ./configure \ > --prefix=/usr/local/httpd \ > --enable-so \ > --enable-rewrite \ > --enable-charset-lite \ > --enable-cgi ./configure \ --prefix=/usr/local/httpd \ #指定将 httpd 服务程序的安装路径 --enable-so \ #启用动态加载模块支持,使 httpd 具备进一步扩展功能的能力 --enable-rewrite \ #启用网页地址重写功能,用于网站优化、防盗链及目录迁移维护 --enable-charset-lite \ #启动字符集支持,以便支持使用各种字符集编码的页面 --enable-cgi #启用CGI(通用网关接口)脚本程序支持,便于网站的外部扩展应用访问能力
1.4 编译及安装
make -j 6 && make install #make -j 6 表示开6核同时进行编译,大家根据自己的核数选择
1.5 优化配置文件路径
把httpd服务的可执行程序文件放入路径环境变量的目录中便于系统识别
ln -s /usr/local/httpd/conf/httpd.conf /etc/ ln -s /usr/local/httpd/bin/* /usr/local/bin/
1.6 添加httpd系统服务
方法一: cp /usr/local/httpd/bin/apachectl /etc/init.d/httpd #用于service服务管理 chmod +x /etc/init.d/httpd vi /etc/init.d/httpd #!/bin/bash #在第一行前插入新行,添加此三行内容 # chkconfig: 35 85 21 #35级别自动运行 第85个启动 第21个关闭 # description: Apache is a World Wide Web server chkconfig --add httpd #将httpd服务加入到service管理器 systemctl start httpd.service 或 service httpd start 方法二: vim /lib/systemd/system/httpd.service [Unit] #服务的说明 Description=The Apache HTTP Server #描述服务 After=network.target #依赖,当依赖的服务启动之后再启动自定义的服务 [Service] #服务运行参数的设置 Type=forking #后台运行方式 PIDFile=/usr/local/httpd/logs/httpd.pid #PID文件位置 ExecStart=/usr/local/bin/apachectl $OPTIONS #服务的运行命令 ExecReload=/bin/kill -HUP $MAINPID #根据PID重载配置 [Install] #服务安装的相关设置 WantedBy=multi-user.target #设置为多用户 systemctl start httpd.service systemctl enable httpd.service
1.7 修改httpd 服务配置文件
vim /etc/httpd.conf --52行--修改 Listen 192.168.109.132:80 #根据自己的IP地址设置 --197行--取消注释,修改 ServerName www.stevelu.com:80 #域名自拟 --221行--默认首页存放路径 DocumentRoot "/usr/local/httpd/htdocs" --255行--默认首页文件名设置 DirectoryIndex index.html httpd -t 或 apachectl -t #检查配置文件的配置项是否有误 cat /usr/local/httpd/htdocs/index.html systemctl restart httpd.service
1.8 浏览器访问验证
netstat -anpt | grep 80 echo "192.168.109.132 www.stevelu.com" >> /etc/hosts http://192.168.109.132 http://www.stevelu.com