Linux设置apache,mysql,snmp等开机启动

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux设置apache,mysql,snmp等开机启动相关的知识,希望对你有一定的参考价值。

参考技术A mysql设为linux服务cp
/usr/local/mysql/share/mysql/mysql.server
/etc/init.d/mysqldchkconfig
--add
mysqldchkconfig
--level
2345
mysqld
onchown
mysql:mysql
-R
/usr/local/mysql/service
mysqld
startapache设为linux服务cp
/usr/local/apache2/bin/apachectl
/etc/init.d/httpdvi
/etc/init.d/httpd在在#!/bin/sh后面加入下面两行#chkconfig:345
85
15#description:
Start
and
stops
the
Apache
HTTP
Server.然后chmod
+x
/etc/rc.d/init.d/httpdchkconfig
--add
httpd然后可以用setup命令进入服务设置,设置为开机启动第二种方法:在/etc/rc.d/rc.local中增加启动apache的命令,如:/usr/local/apache2/bin/apachectl
start/usr/local/mysql/bin/mysqld_safe
--user=root
&

linux下设置mysql apache 开机后自动启动

 1 #将mysql启动脚本放入所有脚本运行目录/etc/rc.d/init.d中
 2 cp /lamp/mysql-5.0.41/support-files/mysql.server /etc/rc.d/init.d/mysqld
 3 
 4 #改变权限
 5 chown root.root /etc/rc.d/init.d/mysqld
 6 
 7 #所有用户都可以执行,单只有root可以修改
 8 chmod 755 /etc/rc.d/init.d/mysqld
 9 
10 #将mysqld 放入linux启动管理体系中
11 chkconfig --add mysqld
12 
13 #查看全部服务在各运行级状态
14 chkconfig --list mysqld
15 
16 #运行级别345启动
17 chkconfig --level 345 mysqld on
18 #再次查看全部服务在各运行级状态,会发现msyqld 说明以及设置为开机自启动
19 chkconfig --list mysqld

httpd           0:关闭  1:关闭 2:关闭 3:启用 4:启用 5:启用  6:关闭
完成httpd开机启动

2,开始设置apache开机自启动


第一步:
cp /usr/local/apache/bin/apachectl /etc/rc.d/init.d/httpd //如果有其他的版本的Apache存在,也可以直接覆盖掉

第二步:
使用编辑器打开httpd文件,并在第一行#!/bin/sh下增加两行文字如下
# chkconfig: 35 70 30
# description: Apache
其中所增加的第二行中三个数字第一个表示在运行级别3和5下启动apache,第二、三是关于启动和停止的优先级配置,无关紧要。

接着注册该服务
chkconfig –add httpd
chkonfig --level 345 httpd on
chkonfig --list
#会看到httpd已经在开机启动列表里

ok




















以上是关于Linux设置apache,mysql,snmp等开机启动的主要内容,如果未能解决你的问题,请参考以下文章

Linux中 设置apache,mysql 开机启动

如何配置linux下的snmp服务

windows下snmp服务怎么设置密码

snmp协议监控Linux

如何利用SNMP来获取监控数据

linux下设置mysql apache 开机后自动启动