在Windows和Linux环境下安装配置Apache
安装环境Windows
1. 下载对应的安装包程序。
官网下载地址https://www.apachehaus.com/cgi-bin/download.plx
网盘链接:https://pan.baidu.com/s/16ewAcY0WXSG38bTVMSHBxg
提取码:uju4
2. 解压缩文件
3. 修改配置文件,打开conf/httpd.conf,修改成你的解压路径。
4. 测试配置文件是否合法(这步可跳过),win+r输入cmd回车
httpd -t #测试配置文件是否合法
5. 安装Apache服务,httpd -k install -n Apache2.4 #-n后面表示自定义访问名称
6. 启动服务
①可以输入指令启动
httpd -k start #启动
httpd -k stop #停止
②也可以手动打开
win+r输入services.msc回车
③还可以直接运行exe
双击运行解压目录/bin下的ApacheMonitor.exe
点击桌面右下角图标,然后点击start
7. 测试一下
在浏览器访问http://localhost
如果出现上图,那么恭喜你Apache安装配置就完成了。
安装环境Linux
网盘链接:https://pan.baidu.com/s/16ewAcY0WXSG38bTVMSHBxg
提取码:uju4
1. 下载
cd /usr/local/src
wget http://mirrors.cnnic.cn/apache/httpd/httpd-2.4.46.tar.gz #下载apache
wget http://mirrors.cnnic.cn/apache/apr/apr-1.7.0.tar.gz #下载APR
wget http://mirrors.cnnic.cn/apache/apr/apr-util-1.6.1.tar.bz2 #下载APR-util
yum install -y pcre pcre-devel #安装PCRE
2. 解压
tar zxvf httpd-2.4.46.tar.gz
tar zxvf apr-1.7.0.tar.gz
tar jxvf apr-util-1.6.1.tar.bz2
3. 安装
#APR
cd /usr/local/src/apr-1.7.0 #切换到解压目录下
./configure --prefix=/usr/local/apr #检查环境
make && make install #编译安装
#APR-util
yum install expat-devel #先安依赖,有询问输入y
cd /usr/local/src/apr-util-1.6.1
./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
make && make install
#httpd
cd /usr/local/src/httpd-2.4.46
./configure --prefix=/usr/local/apache2.4 --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --enable-so --enable-mods-shared=most
make && make install
4. 启动服务
/usr/local/apache2.4/bin/apachectl start #启动服务
ps aux |grep httpd #查看进程
设置开机自启
cp /usr/local/apache2.4/bin/apachectl /etc/init.d/httpd #复制服务
vi /etc/init.d/httpd #配置支持chkconfig
#然后在!/bin/sh后面添加两句代码
#chkconfig:345 85 15
#
#description:Start and stop the Apache HTTP Server
chkconfig --add httpd #添加服务启动项
chkconfig httpd on #自启
chkconfig --list httpd #检查
5. 测试
如果不行,应该是你的服务器安全组未设置,打开80端口即可。
原文链接:https://blog.csdn.net/qq_45034708/article/details/108565486
1. 下载对应的安装包程序。
官网下载地址https://www.apachehaus.com/cgi-bin/download.plx
网盘链接:https://pan.baidu.com/s/16ewAcY0WXSG38bTVMSHBxg
提取码:uju4
2. 解压缩文件
3. 修改配置文件,打开conf/httpd.conf,修改成你的解压路径。
4. 测试配置文件是否合法(这步可跳过),win+r输入cmd回车
httpd -t #测试配置文件是否合法
5. 安装Apache服务,httpd -k install -n Apache2.4 #-n后面表示自定义访问名称
6. 启动服务
①可以输入指令启动
httpd -k start #启动
httpd -k stop #停止
②也可以手动打开
win+r输入services.msc回车
③还可以直接运行exe
双击运行解压目录/bin下的ApacheMonitor.exe
点击桌面右下角图标,然后点击start
7. 测试一下
在浏览器访问http://localhost
如果出现上图,那么恭喜你Apache安装配置就完成了。
安装环境Linux
网盘链接:https://pan.baidu.com/s/16ewAcY0WXSG38bTVMSHBxg
提取码:uju4
1. 下载
cd /usr/local/src
wget http://mirrors.cnnic.cn/apache/httpd/httpd-2.4.46.tar.gz #下载apache
wget http://mirrors.cnnic.cn/apache/apr/apr-1.7.0.tar.gz #下载APR
wget http://mirrors.cnnic.cn/apache/apr/apr-util-1.6.1.tar.bz2 #下载APR-util
yum install -y pcre pcre-devel #安装PCRE
2. 解压
tar zxvf httpd-2.4.46.tar.gz
tar zxvf apr-1.7.0.tar.gz
tar jxvf apr-util-1.6.1.tar.bz2
3. 安装
#APR
cd /usr/local/src/apr-1.7.0 #切换到解压目录下
./configure --prefix=/usr/local/apr #检查环境
make && make install #编译安装
#APR-util
yum install expat-devel #先安依赖,有询问输入y
cd /usr/local/src/apr-util-1.6.1
./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
make && make install
#httpd
cd /usr/local/src/httpd-2.4.46
./configure --prefix=/usr/local/apache2.4 --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --enable-so --enable-mods-shared=most
make && make install
4. 启动服务
/usr/local/apache2.4/bin/apachectl start #启动服务
ps aux |grep httpd #查看进程
设置开机自启
cp /usr/local/apache2.4/bin/apachectl /etc/init.d/httpd #复制服务
vi /etc/init.d/httpd #配置支持chkconfig
#然后在!/bin/sh后面添加两句代码
#chkconfig:345 85 15
#
#description:Start and stop the Apache HTTP Server
chkconfig --add httpd #添加服务启动项
chkconfig httpd on #自启
chkconfig --list httpd #检查
5. 测试
如果不行,应该是你的服务器安全组未设置,打开80端口即可。
原文链接:https://blog.csdn.net/qq_45034708/article/details/108565486