温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

解决cron无法运行报错:FAILED

发布时间:2020-07-15 21:20:51 来源:网络 阅读:393 作者:zxxiong 栏目:系统运维

解决cron无法运行报错:FAILED to authorize user with PAM (Module is unknown)

查看cron运行日志
tail -f /var/log/cron
报如下错误:

May  8 10:14:01 localhost crond[9399]: (root) FAILED to authorize user with PAM (Module is unknown)
May  8 10:14:01 localhost crond[9400]: (root) FAILED to authorize user with PAM (Module is unknown)

网上有如下解决方法:
禁用SELinux,可以使用getenforce命令查看是否禁用。
修改/etc/pam.d/crond,把把所有required改成sufficient,这个可能对非root用户管用。

account    required   pam_access.so
account    include    password-auth
session    required   pam_loginuid.so
session    include    password-auth
auth       include    password-auth

最终解决办法:
重启crond服务

/etc/init.d/crond restart

参考文献:https://zhang.ge/5093.html

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI