我已经在 AWS EC2 实例上设置了 apache、mysql 和 php,但是如何才能让这些服务在 EC2 启动时启动呢?我找到了命令,chkconfig -a mysql
但这只会给出如下错误option -a not found
。
答案1
我读过chkconfig 手册页为你而设,它说
chkconfig [--level <levels>] [--type <type>]<name> <on|off|reset|resetpriorities>
所以
chkconfig --level 3 mysqld on
将在运行级别 3 启动 mysql 守护进程。同样
chkconfig --level 3 httpd on
将在运行级别 3 启动 Apache。