我正在尝试按照此scripts configuration运行Mongodb之类的服务。然后当我尝试执行任何这些命令时:
service mongodb [start|stop|restart]
service mongoconf [start|stop|restart]
service mongos [start|stop|restart]
我遇到了这个问题。
vagrant@sandbox-dev:~$ service mongodb start
start: Rejected send message, 1 matched rules; type="method_call", sender=":1.5" (uid=1000 pid=1296 comm="start mongodb ") interface="com.ubuntu.Upstart0_6.Job" member="Start" error name="(unset)" requested_reply="0" destination="com.ubuntu.Upstart" (uid=0 pid=1 comm="/sbin/init")
我在我的Vagrant VM上使用 ubuntu 12.04 。
感谢您的帮助.. !!
答案 0 :(得分:3)
只需添加 sudo
即可sudo service mongodb [start|stop|restart]
sudo service mongoconf [start|stop|restart]
sudo service mongos [start|stop|restart]