• 解决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)
    

      

    网上有如下解决方法:

    • 修改/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
    

      

  • 相关阅读:
    Qt串口的使用记录
    CImage灰度化
    (记录)MSYS2+MINGW32编译ffmpeg过程
    Blas 基本函数功能
    blas中dgemm_的用法
    选择、插入、冒泡排序
    简单的页面
    中国大学排名
    爬bing 主页
    读书报告
  • 原文地址:https://www.cnblogs.com/hyh123/p/7609599.html
Copyright © 2020-2023  润新知