如何使用 SSH 访问停止 CRON 设置
如何使用 SSH 访问停止 CRON 设置。这些 CRON 不会显示在我的控制面板中,因为它们是使用 SSH 访问设置的。我确实有 ROOT 访问权限,因为它是虚拟服务器。
请帮我。
问候 古拉夫。
How to stop the CRON's set using SSH access. These CRON's are not displayed in my control panel as they are set using SSH access. I do have a ROOT access as its a virtual server.
Please help me.
Regards
Gourav.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您在命令提示符下时,您可以使用:
当然是所有当前用户(可以是 root)。
When you are at the command prompt, you can use:
All of the current user of course (can be root).
尝试在 ssh 中运行 crontab -l ,这会显示 cron 作业列表。如果此列表与控制面板中的列表不同,请运行 crontab -e 并删除不需要的行。
当然,因为它不是你的服务器,可能有其他用户在运行 cron 作业,这是你无法控制的......
Try running
crontab -l
in ssh, which shows the list of cron jobs. If this list is different to what you have in your control panel, runcrontab -e
and delete the lines you don't want.Of course, because it's not your server, there may be other users running cron jobs, which you can't control...