如何在 CentOS 上启动时自动运行应用程序?

如何在 CentOS 上启动时自动运行应用程序?

我在 CentOS 服务器上安装了一个应用程序。为了运行它,我必须运行这两个命令。

[myserver local]# cd /usr/local
[myserver local]# #ppbed start

有人能向我解释如何让这个应用程序ppbed在启动时启动吗?

我应该注意到它ppbed也位于我的/etc/init.d/文件夹中,但它没有执行。

答案1

即使您已经在/etc/init.d/文件夹中找到了脚本,您仍然必须将其添加到 chkconfig 中。

这就是我的做法

[myserver local]# chkconfig --level 345 ppbed on

就是这样。现在它在启动时运行。

相关内容