Apache
无法自动启动,
1
、将
apachectl
文件拷贝到
/etc/rc.d/init.d
中,然后在
/etc/rc.d/rc5.d/
下加入链接即可。
命令如下:
cp /usr/local/apache/bin/apachectl /etc/rc.d/init.d/httpd //
如果有其他的版本的
Apache
存在,也可以直接覆盖掉
ln -s /etc/rc.d/init.d/httpd /etc/rc.d/rc5.d/S85httpd //
建立链接
(85
的意义后面介绍
)
此时
Apache
就可以自动启动了。
2
、
运行
chkconfig --list
,发现没有
linux
服务列表中
httpd
,通过
chkconfig --add httpd
来添加
,
但是提示:
httpd
服务不支持
chkconfig
。需要编辑
/etc/rc.d/init.d/httpd,
添加以下注释信息:
# chkconfig: 345 85 15
#
description: Activates/Deactivates Apache Web Server
第一行
3
个数字参数意义分别为:哪些
Linux
级别需要启动
httpd(3,4,5)
;启动序号
(85)
;关闭序号
(15)
。
保存后执行:
chkconfig --add httpd,
成功添加。
在
rc3.d
、
rc4.d
、
rc5.d
路径中会出现
S85httpd
的链接文件,其他运行级别路径中会出现
K61httpd
的链接文件。
3
、运行
chkconfig --list httpd
分享到:
相关推荐
本资源提供的"httpd-2.2.9.tar.gz"是Apache 2.2.9版本的源码压缩包,适用于CentOS 6.8系统。下面我们将详细探讨Apache源码的下载、解压、编译以及安装过程,以及涉及的相关知识点。 首先,Apache源码的下载通常通过...
chkconfig --add httpd ``` - 删除`httpd`服务的自动化管理: ``` chkconfig --del httpd ``` - 设置`mysqld`服务在运行级别`3`和`5`下启动: ``` chkconfig --level 35 mysqld on ``` 通过上述命令,...
sudo chkconfig --add httpd ``` 然后启动Apache: ``` sudo service httpd start ``` 8. **验证安装** 打开浏览器,输入`http://localhost`,如果看到Apache的欢迎页面,说明安装成功。 **四、安全与维护*...
`chkconfig --add httpd` `chkconfig --level 2345 httpd on` 现在,我们可以使用 `service httpd restart` 命令来正常地启动和停止 Apache 服务器了。 在这篇文章中,我们介绍了如何解决“httpd 未被被识别的...
chkconfig --add httpd chkconfig --add mysqld chkconfig --add vsftpd /etc/init.d/httpd restart /etc/init.d/mysqld restart /etc/init.d/snmpd restart /etc/init.d/vsftpd restart /etc/init.d/...
- 将Apache服务添加到系统服务,使用`chkconfig --add httpd`。 8. **启动Apache**: - 运行`/etc/init.d/httpd start`启动Apache服务器。 - 使用`netstat -tuln | grep :80`检查是否成功监听80端口。 9. **...
chkconfig --add httpd ``` 删除服务: ``` chkconfig --del httpd ``` 5. **注意事项**: - 服务脚本必须存在于`/etc/init.d/`或`/etc/rc.d/init.d/`目录,并且要有执行权限。 - `chkconfig`和`...
sudo chkconfig --add httpd ``` 通过以上步骤,你就完成了Apache httpd 2.4.23在Linux上的安装。在实际操作中,你可能需要根据系统的具体情况进行调整,例如处理权限问题、安装其他模块或配置SSL支持。在安装...
例如,你可以下载`httpd-2.x.x.tar.gz`。 1. 解压源代码包: ``` tar xvf httpd-2.x.x.tar.gz ``` 2. 进入源代码目录: ``` cd httpd-2.x.x ``` 3. 配置Apache,指定安装路径和其他选项: ``` ./...
- `chkconfig --add httpd` - `chkconfig --add nagios` - 设置开机启动: - `chkconfig --level 3 httpd on` - `chkconfig --level 3 nagios on` **二、Nagios服务器配置** 1. **修改主配置文件** (`nagios....
- 添加 Apache 到开机启动:`chkconfig --add httpd` 并设置为运行级别 2345 启动:`chkconfig --level 2345 httpd on` - 如果遇到浏览器无法访问的问题,检查 `iptables` 配置,确保 80 端口开放。可以添加以下...
- 使用`chkconfig --add httpd`将HTTPD服务加入系统服务列表。 - 最后启动HTTPD服务。 - **目的**: 确保HTTPD服务能够在系统启动时自动运行,并且能够通过命令行工具轻松管理。 ##### 5. 查看服务状态(Status) ...
`tar zxf httpd-2.2.17.tar.gz -C /usr/src` 接下来,需要配置httpd: `./configure --prefix=/usr/local/httpd --enable-so --enable-rewrite --enable-charset-lite --enable-cgi` 然后,需要编译安装httpd: ...
tar -zxvf httpd-2.x.x.tar.gz cd httpd-2.x.x/ ``` 接下来,配置Apache以适应你的系统环境,通常包括选择安装路径和模块: ```bash ./configure --prefix=/usr/local/apache2 --enable-mods-shared=all ``` 配置...
完成编辑后,使用`chkconfig --add httpd`命令将Apache服务添加到系统服务列表中。这会在相应的启动级别目录(如`rc3.d`和`rc5.d`)下创建`S61httpd`的链接,而在其他运行级别目录下创建`K61httpd`的链接,用于在...
sudo chkconfig --add httpd sudo service httpd start ``` 然后,通过访问`http://localhost`来测试Apache是否成功运行。 搭建本地YUM源: 在某些情况下,我们可能需要搭建本地YUM源,以提高软件包的下载速度。...
使用`chkconfig --add httpd`将服务添加到系统启动脚本,再用`chkconfig --list httpd`查看服务的启动状态,确保在需要的运行级别(如3和5)上启用。 最后,进行【基本配置】,这包括: 1. 确定网站的域名和IP地址...
配置Apache在系统启动时自动运行,用`chkconfig --add httpd`,然后启动服务`service httpd start`。Apache的默认文档根目录位于`/var/www/html`,主要配置文件在`/etc/httpd/conf/httpd.conf`,额外的配置文件存放...
[root@chao tools]# tar -zxvf httpd-2.4.43.tar.gz ``` 然后,进入解压后的目录,准备编译和安装Apache: ```bash [root@chao tools]# cd httpd-2.4.43 ``` 在安装Apache之前,需要确保系统中安装了必要的依赖...
使用命令`tar zxvf httpd-NN.tar.gz`解压Apache安装包。这里的`NN`代表具体版本号,例如`2.2.10`。 2. **编译安装Apache** - 进入解压后的目录:`cd httpd-NN`。 - 执行`./configure --prefix=/usr/local/httpd...