我正在运行Debian 9和mongodb 4.0.0,并且正在为使用mongo的应用程序构建一个init.d脚本。脚本开始于:
#!/bin/bash
### BEGIN INIT INFO
# Provides: myscript
# Required-Start: $local_fs $remote_fs $network $syslog
# Required-Stop: $local_fs $remote_fs $network $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Start QFLOORSERVER at boot time
### END INIT INFO
通过以下命令使mongodb自动启动:
$ systemctl enable mongod.service
但是我在\etc\init.d
上看不到任何mongo脚本
如何告诉我的脚本在启动时等待mongo?对于mongodb,我应该穿什么Required-Start
?