Ubuntu-Apache:如何在启动时自动启动apache?
我有 zend 服务器。所以我尝试在系统->首选项->会话中做出一个选项 添加了 /usr/local/zend/bin/zendctl.sh。 还尝试了 /usr/local/zend/bin/zendctl.sh start-apache 和 /usr/local/zend/bin/sh zendctl.sh start-apache 。 什么都没有开始。 MySQL 也是如此 - 也没有启动。
有什么想法如何让这些自动运行吗?
I have zend server. So I tried to make an option in System->Preferences->Sessions
Added /usr/local/zend/bin/zendctl.sh.
Also tried /usr/local/zend/bin/zendctl.sh start-apache and /usr/local/zend/bin/sh zendctl.sh start-apache.
Nothing started.
The same is for MySQL - doesn't started also.
Any ideas how to make autorun for these?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
删除您上面提到的启动应用程序条目。
如果你可以使用以下命令启动你的 zend 服务器,下面的解决方案就可以了:
sudo /usr/local/zend/bin/zendctl.sh start-apache
如果你的服务器可以通过命令启动,那么 process
open /etc/init.d/rc.local 使用您最喜欢的文本编辑器(具有超级用户权限),
例如
在文件末尾附加您的启动命令,然后保存并保存。退出&重新启动
remove your start up application entry which you stated above.
Below solution would be fine if you can start your zend server with:
sudo /usr/local/zend/bin/zendctl.sh start-apache
if your server can be started by the command, then process
open /etc/init.d/rc.local using your favorite text editor (with super-user privilege)
e.g.
append your start up command at the end of the file,then save & exit & reboot