知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

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

发布时间:2014-09-05 15:26:51作者:知识屋

mysql设为linux服务
 
cp /usr/local/mysql/share/mysql/mysql.server /etc/init.d/mysqld
chkconfig --add mysqld
chkconfig --level 2345 mysqld on
chown mysql:mysql -R /usr/local/mysql/
service mysqld start
 
apache设为linux服务
 
cp /usr/local/apache2/bin/apachectl /etc/init.d/httpd
vi /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/httpd
chkconfig --add httpd
然后可以用setup命令进入服务设置,设置为开机启动
 
 
 
第二种方法:
 
在/etc/rc.d/rc.local中增加启动apache的命令,
 
如:/usr/local/apache2/bin/apachectl start
 
/usr/local/mysql/bin/mysqld_safe --user=root &
 
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜