尝试按照列出的 tomcat 安装步骤进行操作这里 但无法跨过这一步
$ sudo initctl reload-configuration
得到以下内容
sudo: initctl: command not found
我无法initctl
在/sbin
目录中找到
Ubuntu 15.10 已从 移出upstart
,是这个原因吗?如果是,上述命令的等效项是什么?
答案1
您只需使用以下命令安装它apt-install upstart
:
尝试该命令initctl
,您将看到下一个输出,然后使用上面的命令:
root@ip-XXXXXX:/opt/tomcat# initctl
The program 'initctl' is currently not installed. You can install it by typing:
apt install upstart
安装命令:
root@ip-172-31-61-112:/opt/tomcat# apt install upstart
可能的问题
如果您看到如下输出:
initctl: Unable to connect to Upstart: Failed to connect to socket /com/ubuntu/upstart: Connection refused
赶紧跑:
sudo apt-get install upstart-sysv
答案2
这可能是一个迟来的答案,但这里是在 ubuntu 15,04 上安装 Tomcat8 的指南: http://www.ubuntugeek.com/install-tomcat-8-on-ubuntu-15-04-server.html
我检查了一下,对我来说它似乎有效......