当前位置: 首页 > article >正文

【Linux系统环境中使用二进制包安装Apache】

Linux系统环境中使用二进制包安装Apache

  • 方法一:使用系统安装脚本(推荐)
  • 方法二:自行编辑脚本
  • 删除安装方法一所做配置:

  • 本文使用两种方法在Linux系统环境下,使用源码编译安装Apache,提供系统服务管理脚本并测试

创建系统用户及用户组

	groupadd -r -g 48 apache
	useradd -r -u 48 -g 48 -c "Apache server" -s /sbin/nologin apache

方法一:使用系统安装脚本(推荐)

    [官方源码包下载链接](https://downloads.apache.org/httpd/httpd-2.4.62.tar.gz)
  1. 准备编译工具,下载安装包并解压
# 准备编译工具		
   yum install gcc gcc-c++ make -y

# 下载apache二进制安装包,依赖后续安装
   wget -P /usr/local/src https://downloads.apache.org/httpd/httpd-2.4.62.tar.gz

# 解压二进制包	
   tar xf /usr/local/src/httpd-2.4.62.tar.gz -C /usr/local/src/

# 进入解压的二进制包
   cd /usr/local/src/httpd-2.4.62
  1. 下载所需依赖并编译安装
 # 使用官方的配置脚本将Apache安装到指定路径(没安装依赖运行会报错,可以先安装依赖再执行)
 	./configure --prefix=/usr/local/apache
 
 # 下载相关依赖
 	yum list | grep -i apr
 		yum install apr-devel.x86_64 -y
 		yum install apr-util-devel.x86_64 -y
 	yum list | grep -i pcre
 		yum install pcre-devel.x86_64 -y
        
 # 下载完依赖后再次编译安装(如果先前安装过所需依赖只要安装一次即可)
	./configure --prefix=/usr/local/apache
    make && make install	
  • make:编译源代码并生成可执行文件或库文件,按照 Makefile 中的规则执行编译。
  • make install:将已编译的文件安装到系统中指定的目录,通常需要管理员权限。
  • 如果没有安装依赖,会报出如图错误
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    按照错误提示安装所需依赖即可,部分版本可能会在编译时需要依赖,同理根据提示安装相应依赖即可
    在这里插入图片描述
  • 编译完成
    在这里插入图片描述
  1. 准备启动脚本
	cd /usr/local/apache/bin

 # 拷贝官方启动脚本
	cp /usr/local/apache/bin/apachectl /etc/init.d/httpd
 
 # 检查拷贝的文件是否有执行权限
	ll /etc/init.d/httpd
 
 # 编辑拷贝的文件,添加如下两行
	vim /etc/init.d/httpd
		# chkconfig: 35 85 15
		# description:  Apache is an HTTP(S) server
  1. 修改文件后添加系统应用并设置开机自启动
	chkconfig --level 35 --add httpd
	chkconfig --level 35 httpd on
	chkconfig --list httpd
        
 # 启动服务&查看状态、端口
	systemctl start httpd
	systemctl status httpd
	netstat -lnupt grep 80
  • 通过浏览器访问虚拟机IP地址: 在这里插入图片描述

方法二:自行编辑脚本

   #  创建脚本文件
       vim /usr/lib/systemd/system/httpd.service
  • 脚本内容
# See httpd.service(8)for more information on using the httpd service.
# Modifying this file in-place is not recommended,because changes
# will be overwritten during package upgrades.To customize the
# behaviour,run "systemctl edit httpd"to create an override unit.
       
# For example,to pass additional options (such as -D definitions)to
# the httpd binary at startup,create an override unit (as is done by
# systemctl edit)and enter the following:
       
# 		[Service]
# 		Environment=OPTIONS=-DMY_DEFINE
[Unit]
Description=The Apache HTTP Server
Wants=httpd-init.service
After=network.target remote-fs.target nss-lookup.target httpd-init.service
Documentation=man:httpd.service(8)
       
[Service]
Type=forking
PIDFile=/usr/local/apache/logs/httpd.pid
ExecStart=/usr/local/apache/bin/httpd -k start
ExecReload=/usr/local/apache/bin/httpd -k restart
ExecStop=/usr/local/apache/bin/httpd -k stop
PrivateTmp=true
       
[Install]
WantedBy=multi-user.target
  • 语法检测及修改用户及用户组
# 语法检测(以下两个一致)
   /usr/local/apache/bin/httpd -t
   /usr/local/apache/bin/apachectl -t
# 修改配置文件
   vim /usr/local/apache/conf/httpd.conf
   	把user和group改成apache

删除安装方法一所做配置:

  • 由于我是在同一台虚拟机上安装的,所以在进行第二种安装方式之前先将方法一所作的操作删除
	# 删除httpd的系统服务   
			systemctl stop httpd
			chkconfig --level 35 httpd off
        	chkconfig --list httpd
        	chkconfig --level 35 --del httpd
	# 检查是否删除
        	ll /etc/rc.d/rc3.d/
	# 以上仅删除系统服务,没有删除文件
        	ll /etc/init.d/
        	rm -f /etc/init.d/httpd

http://www.kler.cn/a/510662.html

相关文章:

  • 国产编辑器EverEdit -重复行
  • UllnnovationHub,一个开源的WPF控件库
  • 20250118拿掉荣品pro-rk3566开发板上Android13下在uboot和kernel启动阶段的Rockchip这个LOGO标识
  • 深度学习:大模型Decoding+MindSpore NLP分布式推理详解
  • Redis 中 TTL 的基本知识与禁用缓存键的实现策略(Java)
  • C语言进阶习题【1】指针和数组(3)——一维指针指向字符数组首元素地址
  • MySQL 创建数据库问题:You have an error in your SQL syntax(MySQL 数据库命名规则问题)
  • 闭包的理解及应用
  • # Rust Actix Web 入门指南
  • Avalonia系列文章之小试牛刀
  • 栈和队列经典例题
  • Git版本控制 – 创建和维护项目Repository
  • 数据结构漫游记:队列的动态模拟实现(C语言)
  • Python基础06(字符串格式化/操作方法)
  • Node.js 到底是什么
  • 微服务学习-OpenFeign 简化服务间调用
  • 【第二十周】U-Net:用于生物图像分割的卷积神经网络
  • ARM GCC编译器
  • LeRobot安装教程
  • [实现Rpc] 环境搭建 | JsonCpp | Mudou库 | callBack()
  • VUE学习笔记(入门)17__小黑记事本综合案例
  • Oracle 深入学习 Part12: Managing Indexes (管理索引)
  • A Dual-Module Denoising Approach 解读
  • ES6是什么
  • Agentic AI 和 AI Agent 之间的区别(ChatGPT回答)
  • 【2024年华为OD机试】(B卷,100分)- 计算最接近的数 (Java JS PythonC/C++)