Linux下将Mysql和Apache加入到系统服务里的方法
程序员文章站
2022-06-05 08:51:39
在Linux中我们需要将一些程序放到服务里,让程序自动运行,那么就需要下面的设置,需要的朋友可以参考下。... 11-11-04...
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
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系统下将php和mysql命令加入到环境变量中的方法
-
linux和windows系统下mysql导入导出sql文件的方法
-
linux CentOS 系统下如何将php和mysql命令加入到环境变量中
-
Linux下将Mysql和Apache加入到系统服务里的方法
-
Linux下将MySQL服务添加到服务器的系统服务中
-
linux系统下将php和mysql命令加入到环境变量中的方法
-
linux CentOS 系统下如何将php和mysql命令加入到环境变量中
-
linux CentOS 系统下如何将php和mysql命令加入到环境变量中
-
linux和windows系统下mysql导入导出sql文件的方法
-
Linux下将MySQL服务添加到服务器的系统服务中