Linux下将Mysql和Apache加入到系统服务里的方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下将Mysql和Apache加入到系统服务里的方法相关的知识,希望对你有一定的参考价值。

参考技术A Apache加入到系统服务里面:
  cp
/安装目录下/apache/bin/apachectl
/etc/rc.d/init.d/httpd
  修改httpd
  在文件头部加入如下内容:
  ###
  #
Comments
to
support
chkconfig
on
RedHat
linux
  #
chkconfig:
2345
90
90
  #
description:http
server
  ###
  保存
  在打入
  #chkconfig
--add
httpd
  #chkconfig
--level
345
httpd
on
  mysql加入到系统服务里面
  cp
/usr/local/mysql/share/mysql/mysql.server
/etc/init.d/mysqld
  #把msql的脚本文件拷到系统的启动目录下
  cd
/etc/init.d/
  chkconfig
--add
mysqld
#将mysql加到启动服务列表里
  chkconfig
mysqld
on
#让系统启动时自动打开mysql服务
  Apache加入启动项里面:
  echo
'/usr/local/apache2/bin/apachectl
start
'
>>
/etc/rc.local

Linux下将自己安装的Apache(httpd)新增为系统服务,开机自启动

1> 查看一下/etc/init.d/下是否存在httpd这个服务

ls /etc/init.d/   |  grep httpd      如果没有执行下一步

2>将自己安装目录下的apachect1复制到该目录下并改为httpd

cp /home/houqingdong/http-exe/bin/apachect1   /etc/init.d/httpd      注:红色为自己的安装目录

3>执行 chkconfig --add httpd    目的是想新增所制定的系统服务   但是会出现以下警告:

这里说的是httpd服务不支持chkconfig , 添加支持:    vi /etc/init.d/httpd      在 #!/bin/sh  下添加这两句:

#chkconfig:345 85 15

#description:Start and stop the Apache HTTP Server

最终结果为:

4> 执行:   chkconfig --add httpd

 chkconfig httpd on     就可以添加成功了

5>查看一下是否添加成功:

chkconfig --list httpd

该问题的解决方法参考链接:http://callan.iteye.com/blog/1099648   注:链接上还有设置mysql为开机自启动的系统服务的方法。

以上是关于Linux下将Mysql和Apache加入到系统服务里的方法的主要内容,如果未能解决你的问题,请参考以下文章

centos 环境变量配置

Linux下注册Apache与MySQL为系统服务

Linux下将自己安装的Apache(httpd)新增为系统服务,开机自启动

CentOS添加环境变量

008-CentOS添加环境变量

Linux 运行升讯威在线客服系统:同时支持 SQL Server 和 MySQL 的实现方法