Linux系列之离线安装Apache HTTP
程序员文章站
2022-06-04 13:17:49
...
1. 安装准备
1.1 下载介质
- 链接: https://pan.baidu.com/s/1R1iaKfHbeLUQuJcGn9kNrA 密码: iceg
1.2 上传介质
scp -r /opt/tools/httpd 192.168.233.130:/opt/tools/httpd
2. 安装HTTP
2.1 编译安装apr
cd /opt/tools/httpd
tar -zxvf apr-1.5.2.tar.gz -C ./
cd ./apr-1.5.2
./configure --prefix=/usr/local/httpd/apr
make
make install
2.2 编译安装apr-util
cd /opt/tools/httpd
tar -zxvf apr-util-1.5.4.tar.gz -C ./
cd ./apr-util-1.5.4
./configure --prefix=/usr/local/httpd/apr-util --with-apr=/usr/local/httpd/apr/bin/apr-1-config
make
make install
2.3 编译安装pcre
cd /opt/tools/httpd
tar -zxvf pcre-8.42.tar.gz -C ./
cd ./pcre-8.42
./configure --prefix=/usr/local/httpd/pcre --with-apr=/usr/local/httpd/apr/bin/apr-1-config
make
make install
2.4 编译安装httpd
cd /opt/tools/httpd
tar -zxvf httpd-2.4.34.tar.gz -C ./
cd ./httpd-2.4.34
./configure --prefix=/usr/local/httpd/apache2 --with-apr=/usr/local/httpd/apr/bin/apr-1-config --with-apr-util=/usr/local/httpd/apr-util/bin/apu-1-config --with-pcre=/usr/local/httpd/pcre/bin/pcre-config --enable-dav --enable-so
make
make install
2.5 修改httpd配置
# vim /usr/local/httpd/apache2/conf/httpd.conf
ServerName 192.168.233.130:80
3. 启动HTTP
3.1 将apachectl加入service系统服务
cp /usr/local/httpd/apache2/bin/apachectl /etc/rc.d/init.d/apache
chkconfig --add apache
3.2 启动apache服务
service apache start
3.3 验证启动
ps -ef | grep http
netstat -an | grep :80
3.4 WEB UI验证
3.5 配置HTTP环境变量
# vim /etc/profile
# HTTP_HOME
export HTTP_HOME=/usr/local/httpd/apache2
export PATH=$PATH:$HTTP_HOME/bin
3.6 验证HTTP环境
source /etc/profile
httpd -v
上一篇: php笔记之:AOP的应用_php技巧
下一篇: Pyqt5 设置窗口左上角图标
推荐阅读
-
Linux+php+apache+oracle环境搭建之CentOS下安装Oracle数据库
-
Linux下Apache HTTP Server 2.4.26安装教程
-
Linux+php+apache+oracle环境搭建之CentOS下源码编译安装PHP
-
Linux+php+apache+oracle环境搭建之CentOS下安装Apache
-
从 0 开始学习 Linux 系列之「04.安装 4 个必备的 vim 插件」
-
linux入门系列18--Web服务之Apache服务2
-
linux入门系列18--Web服务之Apache服务1
-
Linux+php+apache+oracle环境搭建之CentOS下安装Oracle数据库
-
Linux系列之离线安装Apache HTTP
-
Linux下Apache HTTP Server 2.4.26安装教程