我按照说明这里,但当我输入“sudo service mydaemon start”时,我得到“mydaemon:无法识别的服务”。我已验证文件是否位于正确的位置,并且采取了额外步骤使我的脚本文件 (echoHW.sh) 可执行,但仍然没有成功。任何帮助都将不胜感激。
答案1
我输入了以下内容sudo crontab -e
,然后选择了nano
作为我的编辑器。它调出了 nano 和以下注释。我在底部添加了我的脚本,然后重新启动。我的任务现在在系统启动时运行。
# Edit this file to introduce tasks to be run by cron.
#
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
#
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').#
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
#
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
#
# For more information see the manual pages of crontab(5) and cron(8)
#
# m h dom mon dow command
@reboot /path/to/script.sh
答案2
您是否已找到并尝试运行 /etc/init.d/(服务名称) 中的服务?
我不熟悉如何在不实际运行位于 init.d 文件夹下的 shell 程序的情况下调用服务,但我确信如果启动服务的 shell 程序位于 init.d 下,那么它应该是一个简单的设置,因此您可以按照您希望的方式调用它 - “service mydaemon [command]”
答案3
如果脚本不可执行,则可能会出现该错误
sudo chmod +x /etc/init.d/mydaemon
答案4
您是否在路由器上设置了端口转发?如果没有,请设置端口转发和您的静态 IP 地址 + DNS(您需要从 DNS 提供商处获取或拥有自己的 DNS 服务器)。端口转发这里。