解决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/cron.allow,添加
root
myuser

修改/etc/pam.d/crond,把把所有required改成sufficient,这个可能对非root用户管用。
#
# The PAM configuration file for the cron daemon
#
#
# No PAM authentication called, auth modules not needed
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
————————————————
版权声明:本文为CSDN博主「小龙在山东」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/lilongsy/article/details/71404119
发布了64 篇原创文章 · 获赞 26 · 访问量 36万+

猜你喜欢

转载自blog.csdn.net/moliyiran/article/details/104137129
pam