apache加入chkconfig

#First Step:
cp /usr/local/apache2/bin/apachectl /etc/init.d/httpd

#Second Step:
vim /etc/init.d/httpd
在第一行#!/bin/sh下增加两行文字
# chkconfig: 35 70 30
# description: Apache

#Third Step:
保存退出
chkconfig --level 35 httpd on

  

时间: 2024-10-10 18:08:03

apache加入chkconfig的相关文章

linux平台下apache的源码安装和将apache服务配置成系统服务

安装apache服务 下载apache源码包 # tar -zxvf http-2.2.29.tar.gz # cd http-2.2.29 #   ./configure --prefix=/usr/local/apache  --enable-so --enable-cgi #   make #   make install 配置成系统服务: #  cp /usr/local/apache/bin/apachectl /etc/init.d/httpd #  cp /usr/local/ap

linux+php+apache+mysql+vsftp

安装:php+apache+mysql↓ yum -y install httpd php mysql mysql-server php-mysql httpd-manual mod_ssl mod_perl mod_auth_mysql php-mcrypt php-gd php-xml php-mbstring php-ldap php-pear php-xmlrpc mysql-connector-odbc mysql-devel libdbi-dbd-mysql 配置vsftp↓ yum

apache、tomcat部署——在一台主机内

在上一篇中写了tomcat独立部署,自己提供web,自己提供容器.此处使用apache进行代理,apache和tomcat部署在一台主机上. 1.httpd的安装 httpd使用的版本是httpd-2.4.4.tar.bz2,这里使用源码编译安装.源码可到http://archive.apache.org/dist/httpd/#releases 进行下载.安装前先通过rpm命令查看apr和apr-util包的版本信息,httpd-2.4以上版本需要apr和apr-util的版本至少是1.4以上

apr apr-util apache 源码安装 配置系统服务

在官网下载 源码包 apr-1.5.1.tar.gz apr-util-1.5.3.tar.gz httpd-2.4.10.tar.gz 安装用户是root 解压命令 tar -zxvf httpd-2.4.10.tar.gz 源码安装 apr ,apr-util ./configure --prefix=/usr/local/apr 报错:rm: cannot remove `libtoolT': No such file or directory 我直接忽略了,网上看有修改configure

搭建Apache HTTP Server(编译安装)

mkdir /apache   #创建一个Apache目录,位置随你们习惯wget http://mirrors.cnnic.cn/apache/httpd/httpd-2.4.25.tar.bz2   #下载apache源码tar -jxvf httpd-2.4.25.tar.bz2   #解压缩 编译时可能会有各种问题,比如 checking for APR... no configure: error: APR not found .  Please read the documentat

Apache源码包添加启动脚本到系统服务

手动编译apache源码包安装的话,apache是没有启动脚本的,也就是说用户不能通过简单的通过/etc/init.d/httpd(start|stop|restart)来启动/关闭/重新启动. 其实源码里已经有启动的脚本,我们要修改下即可,把Apache加入系统SysV服务中来. 在源码httpd-2.x.x/build/rpm中存在httpd.init    #httpd.ini就是apache启动脚本 拷贝命令如下: cp httpd.init /etc/init.d/httpd 编辑该h

Linux Apache web服务器 配置详细教程

3 Linux Apache web服务器 v2.4.29学习要点: 1.apache用途,工作模式,httpd.conf的配置重要参数2.虚拟主机 工作模式的参数优化 3.1 Apache 概述: 3.1.1 Apache 概述Apache是世界使用排名第一的Web服务器软件.它可以运行在几乎所有广泛使用的计算机平台上,由于其跨平台和安全性被广泛使用,是最流行的Web服务器端软件之一.它快速.可靠并且可通过简单的API扩充,将Perl/Python等解释器编译到服务器中.同时Apache音译为

peak学Linux--基于centos 6.5搭建LAMP并安装Discuz X3.2

实验环境: VMware Workstation 10.0.0 build-1295980 centos 6.5 32位(系统ip:192.168.10.50,与物理机桥接,保证可以上外网) 所需的压缩包及下载地址 mysql-5.1.72-linux-i686-glibc23 http://mirrors.sohu.com/mysql/MySQL-5.1/mysql-5.1.72-linux-i686-glibc23.tar.gz php-5.3.28 http://mirrors.sohu.

lamp安装脚本(编译方式)

#!/bin/bash # # ********************************************************** # * filename:    lamp_install.sh   * # * discription:    lamp install   * # * version:    centos6.7 apr-1.5.2 apr-util-1.5.4     * # *    httpd-2.4.6 mysql-5.5.32  php-5.6.15