`

httpd.tar.gz配置开机自启服务

 
阅读更多

 

1. httpd 2.2.22 安装

    步骤一

    #tar zxvf httpd-2.2.22.tar.gz

    #./configure --enable-dav --enable-so --prefix=/usr/local/httpd/

    #make

    #make install

 

   步骤二

           如果没有配置开机自启,需手动配置

    # cp -rf /usr/local/httpd/apachectl /etc/init.d/httpd

   

   步骤三

    修改/etc/init.d/httpd

    vi httpd

    在 #!/bin/sh 下面增加几行 chkconfig 需要的内容:

# chkconfig: 2345 70 30

# description: Apache is a World Wide Web server.  It is used to serve \

#              HTML files and CGI.

# processname: httpd

第一行3个数字参数意义分别为:哪些Linux级别需要启动httpd(2,3,4,5);启动序号(70);关闭序号(30)。

保存后执行:chkconfig --add httpd,成功添加。

如果不添加上述内容会出现:

httpd服务不支持 chkconfig

 

   步骤四

    chkconfig --add httpd

        如需删除

    chkconfig --del httpd

 

2. 启动/重启/关闭

/usr/local/httpd/bin/httpd -k start/restart/stop

服务启动

#service httpd start/restart/stop

#httpd开机启动  

#chkconfig --level 345 httpd on 

 

分享到:
评论

相关推荐

    Apache安装httpd-2.4.16.tar.gz

    tar -zxvf httpd-2.4.16.tar.gz ``` 4. **配置编译** 进入解压后的目录并配置Apache以适应你的系统: ``` cd httpd-2.4.16 ./configure --prefix=/usr/local/apache2 --enable-so --enable-rewrite --with-...

    linux-httpd-2.4.49.tar.zip

    1. **解压**:首先需要将“linux-httpd-2.4.49.tar.gz”解压,可以使用`tar -zxvf httpd-2.4.49.tar.gz`命令。 2. **进入目录**:解压后,进入解压后的目录,如`cd httpd-2.4.49`。 3. **配置**:执行配置脚本`./...

    nagios-3.2.1.tar.gz

    在Linux环境下安装和配置Nagios 3.2.1,首先需要解压下载的`nagios-3.2.1.tar.gz`文件。在终端中,可以使用以下命令完成解压: ```bash tar -zxvf nagios-3.2.1.tar.gz ``` 解压完成后,进入解压后的目录: ```...

    Apache httpd 2.4.23(Linux)安装文档及文件

    9. **添加开机启动**:为了使Apache httpd在每次系统启动时自动运行,可以将其添加为系统服务。 ``` sudo ln -s /usr/local/apache2/bin/apachectl /etc/init.d/httpd sudo chkconfig --add httpd ``` 通过以上...

    wordpress-5.3(1).tar.gz

    本教程将详细讲解如何在Linux系统,特别是CentOS 7上,安装和使用从"wordpress-5.3(1).tar.gz"这个压缩包中提取出的最新WordPress版本。 一、环境准备 在开始安装之前,确保你的CentOS 7系统已经更新至最新,并且...

    filebeat-6.5.4-linux-x86_64.tar.gz

    - **启动与管理**:使用 `systemctl start filebeat` 启动服务,使用 `systemctl status filebeat` 查看状态,`systemctl enable filebeat` 设置开机启动。 3. **HTTPD 模块** - **标签 "httpd"**:表明这个版本...

    http-2.2.15.tar.gz

    4. **配置服务**:安装完成后,你需要编辑Apache的配置文件(通常是`/etc/httpd/conf/httpd.conf`),根据需求进行配置,比如设置监听端口、虚拟主机等。 5. **启动服务**:使用`service httpd start`或`systemctl ...

    apache2.4.10.rar安装包

    `httpd-2.4.10.tar.gz`是Apache的源代码,`openssl-1.0.1i.tar.gz`是OpenSSL库,`pcre-8.35.tar.gz`是Perl兼容正则表达式库(PCRE),而`httpd-2.4.10-deps.tar.gz`包含其他依赖项。使用`tar -zxvf 文件名`命令解压...

    编译安装httpd.rar

    添加Apache到开机启动服务,并启动服务器: ```bash sudo ln -s /usr/local/apache2/bin/apachectl /etc/init.d/httpd sudo chkconfig --add httpd sudo service httpd start ``` 然后,通过访问`...

    httpd22.34.rar

    tar -zxvf httpd-2.2.34.tar.gz cd httpd-2.2.34 ./configure --prefix=/usr/local/apache2 make && sudo make install ``` 三、配置Apache Apache的配置文件通常位于`/etc/httpd/conf/httpd.conf`或`/usr/local/...

    appweb-3.3.2交叉编译好的文件.tar.gz

    总的来说,"appweb-3.3.2交叉编译好的文件.tar.gz"是一个包含了预编译AppWeb服务器及其配置指南的打包文件,适用于那些希望快速在特定环境下部署Web服务的开发者和系统管理员。通过遵循提供的说明,用户可以轻松地在...

    zabbix.tar.gz

    接下来,启动Mysql服务并设置开机启动: ```bash sudo systemctl start mariadb sudo systemctl enable mariadb ``` 配置Zabbix服务器连接数据库: ```bash sudo vi /etc/zabbix/zabbix_server.conf ``` 找到以...

    Apache Web Server2.0.40.tar(Linux下使用)

    2. **解压源码**:使用`tar`命令解压文件,如`tar -zxvf httpd-2.0.40.tar.gz`,这将创建一个名为httpd-2.0.40的目录。 3. **配置编译**:进入解压后的目录,使用`./configure`命令来配置编译选项,确保与你的Linux...

    服务器安装和配置.pdf

    - 进入/home目录,解压httpd-2.2.9.tar.gz到/usr/src。 - 在/usr/src/httpd-2.2.9目录下运行配置脚本,指定安装路径为/usr/local/apache,并启用动态加载模块。 - 使用make和make install编译并安装Apache。 2. ...

    OTRS中国版配置安装

    2. 开机自启动并启动Apache服务:使用chkconfig命令配置httpd服务开机自启动,并使用/etc/init.d/httpd脚本来启动服务。 3. 安装gcc和make工具:在安装某些模块时可能需要编译源码,所以需要确保安装了gcc和make工具...

    编译安装LAMP环境和nagios部署.docx

    使用 `yum` 安装必要的依赖,如 `pcre-devel` 和 `openssl-devel`,然后解压 `httpd-2.4.29.tar.gz`,配置并编译安装Apache。 4. 设置Apache环境变量: 在 `/etc/profile.d/` 创建新文件 `httpd24.sh`,添加...

    linux 安装httpd 所需要安装各自安装包

    tar -zxvf httpd-2.4.26.tar.gz tar -zxvf apr-1.6.2.tar.gz tar -zxvf apr-util-1.5.4.tar.gz ``` 4. **构建和安装apr**: 进入apr目录并配置、编译和安装: ```bash cd apr-1.6.2 ./configure make ...

    Linux下PHP环境配置LAMP.pdf

    7. 将MySQL服务添加到启动脚本,以便开机自启。 8. 使用`mysql`命令行客户端连接数据库。 **安装Apache(httpd):** 1. 解压Apache源代码包。 2. 在`/usr/local`创建一个名为`apache2`的目录。 3. 配置Apache,...

    linux下配置php环境完整版.doc

    tar -zxvf httpd-2.4.x.tar.gz cd httpd-2.4.x ./configure --prefix=/usr/local/apache2 make && make install ``` 3. 配置Apache以启动并设置开机启动。 ```bash cp -r conf /usr/local/apache2/conf echo "/usr/...

Global site tag (gtag.js) - Google Analytics