<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: PAM Error Message - Authentication failed in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/pam-error-message-authentication-failed/m-p/2817200#M85745</link>
    <description>We are completely locked out of our system as any user id...including root.  WE have replaced the passwd file with a generic one from the neconfig director...nothing works...HP seems stumped...any suggestions...this is not a Denial of Service attach.&lt;BR /&gt;&lt;BR /&gt;Any assistance is appreciated.&lt;BR /&gt;&lt;BR /&gt;We have checked all the PAM libraries for corruption and permissions...nothing is working.</description>
    <pubDate>Thu, 23 Oct 2003 18:55:38 GMT</pubDate>
    <dc:creator>Edward Gruskin</dc:creator>
    <dc:date>2003-10-23T18:55:38Z</dc:date>
    <item>
      <title>PAM Error Message - Authentication failed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pam-error-message-authentication-failed/m-p/2817197#M85742</link>
      <description>Hi admin &lt;BR /&gt;&lt;BR /&gt;We are getting the following error message in  Syslog.log file.&lt;BR /&gt; Can you please advise what is the problem and how to stop this message?&lt;BR /&gt; &lt;BR /&gt;Oct 1 07:26:27 ajwahp rexecd[28828]: PAM Status - 9, PAM Error Message - Authentication failed&lt;BR /&gt;Oct 1 07:56:14 ajwahp rexecd[29995]: PAM Status - 9, PAM Error Message - Authentication failed&lt;BR /&gt;Oct 1 08:47:10 ajwahp rexecd[1876]: PAM Status - 9, PAM Error Message - Authentication failed&lt;BR /&gt;Oct 1 08:47:28 ajwahp : su : + td root-oracle&lt;BR /&gt;Oct 1 08:53:07 ajwahp tftpd[1749]: Timeout (no requests in 10 minutes)&lt;BR /&gt;Oct 1 08:55:29 ajwahp rexecd[2195]: PAM Status - 9, PAM Error Message - Authentication failed&lt;BR /&gt;Oct 1 08:56:21 ajwahp rexecd[2344]: PAM Status - 9, PAM Error Message - Authentication failed&lt;BR /&gt;Best regards,</description>
      <pubDate>Wed, 02 Oct 2002 04:38:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pam-error-message-authentication-failed/m-p/2817197#M85742</guid>
      <dc:creator>AHMED ABDOU</dc:creator>
      <dc:date>2002-10-02T04:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: PAM Error Message - Authentication failed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pam-error-message-authentication-failed/m-p/2817198#M85743</link>
      <description>Hi,&lt;BR /&gt;It is basically a login failure, specifically an rexec failed to run due to bad password or permission problem. Rexec is used to run a program on a remote host. &lt;BR /&gt;Do man pam for more info.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The list of possible messages and what they mean. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;/* Generic PAM errors */ &lt;BR /&gt;#define PAM_SUCCESS 0 /* Normal function return */ &lt;BR /&gt;#define PAM_OPEN_ERR 1 /* Shared object load failure */ &lt;BR /&gt;#define PAM_SYMBOL_ERR 2 /* Symbol not found */ &lt;BR /&gt;#define PAM_SERVICE_ERR 3 /* Error in underlying service module */ &lt;BR /&gt;#define PAM_SYSTEM_ERR 4 /* System error */ &lt;BR /&gt;#define PAM_BUF_ERR 5 /* Memory buffer error */ &lt;BR /&gt;#define PAM_CONV_ERR 6 /* Conversation failure */ &lt;BR /&gt;#define PAM_PERM_DENIED 7 /* Permission denied */ &lt;BR /&gt;&lt;BR /&gt;/* Errors returned by pam_authenticate, pam_acct_mgmt(), and pam_setcred() &lt;BR /&gt;*/ &lt;BR /&gt;#define PAM_MAXTRIES 8 /* Maximum number of tries exceeded */ &lt;BR /&gt;#define PAM_AUTH_ERR 9 /* Authentication failure */ &lt;BR /&gt;#define PAM_AUTHTOKEN_REQD 10 /* Get new auth token from the user */ &lt;BR /&gt;#define PAM_CRED_INSUFFICIENT 11 /* can not access auth data b/c */ &lt;BR /&gt;/* of insufficient credentials */ &lt;BR /&gt;#define PAM_AUTHINFO_UNAVAIL 12 /* Can not retrieve auth information */ &lt;BR /&gt;#define PAM_USER_UNKNOWN 13 /* No account present for user */ &lt;BR /&gt;&lt;BR /&gt;/* Errors returned by pam_setcred() */ &lt;BR /&gt;#define PAM_CRED_UNAVAIL 14 /* can not retrieve user credentials */ &lt;BR /&gt;#define PAM_CRED_EXPIRED 15 /* user credentials expired */ &lt;BR /&gt;#define PAM_CRED_ERR 16 /* failure setting user credentials */ &lt;BR /&gt;&lt;BR /&gt;/* Errors returned by pam_acct_mgmt() */ &lt;BR /&gt;#define PAM_ACCT_EXPIRED 17 /* user account has expired */ &lt;BR /&gt;#define PAM_AUTHTOK_EXPIRED 18 /* Password expired and no longer */ &lt;BR /&gt;/* usable */ &lt;BR /&gt;/* Errors returned by pam_open/close_session() */ &lt;BR /&gt;#define PAM_SESSION_ERR 19 /* can not make/remove entry for */ &lt;BR /&gt;/* specified session */ &lt;BR /&gt;&lt;BR /&gt;/* Errors returned by pam_chauthtok() */ &lt;BR /&gt;#define PAM_AUTHTOK_ERR 20 /* Authentication token */ &lt;BR /&gt;/* manipulation error */ &lt;BR /&gt;#define PAM_AUTHTOK_RECOVERY_ERR 21 /* Old authentication token */ &lt;BR /&gt;/* cannot be recovered */ &lt;BR /&gt;#define PAM_AUTHTOK_LOCK_BUSY 22 /* Authentication token */ &lt;BR /&gt;/* lock busy */ &lt;BR /&gt;#define PAM_AUTHTOK_DISABLE_AGING 23 /* Authentication token aging */ &lt;BR /&gt;/* is disabled */ &lt;BR /&gt;&lt;BR /&gt;/* Errors returned by pam_get_data */ &lt;BR /&gt;#define PAM_NO_MODULE_DATA 24 /* module data not found */ &lt;BR /&gt;&lt;BR /&gt;/* Errors returned by modules */ &lt;BR /&gt;#define PAM_IGNORE 25 /* ignore module */ &lt;BR /&gt;&lt;BR /&gt;#define PAM_ABORT 26 /* General PAM failure */ &lt;BR /&gt;#define PAM_TRY_AGAIN 27 /* Unable to update password */ &lt;BR /&gt;/* Try again another time */ &lt;BR /&gt;&lt;BR /&gt;#ifdef COMSEC &lt;BR /&gt;#define PAM_ACCT_DISABLED 28 /* Account is disabled */ &lt;BR /&gt;#define PAM_TERM_DISABLED 29 /* Terminal is disabled */ &lt;BR /&gt;#define PAM_NOT_AUTHORIZED 30 /* User is not authorized for &lt;BR /&gt;terminal access */ &lt;BR /&gt;#define PAM_NOT_RTIME 31 /* Wrong time to login */ &lt;BR /&gt;#define PAM_TERM_ERROR 32 /* Terminal database corruption or &lt;BR /&gt;no corresponding entry found */ &lt;BR /&gt;#define PAM_PRPW_ERROR 33 /* Password database corruption &lt;BR /&gt;no corresponding entry found */ &lt;BR /&gt;</description>
      <pubDate>Wed, 02 Oct 2002 05:02:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pam-error-message-authentication-failed/m-p/2817198#M85743</guid>
      <dc:creator>Animesh Chakraborty</dc:creator>
      <dc:date>2002-10-02T05:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: PAM Error Message - Authentication failed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pam-error-message-authentication-failed/m-p/2817199#M85744</link>
      <description>Hi,&lt;BR /&gt;Maybe you can check with last and lastb who is having problem with logiing in.&lt;BR /&gt;Donald</description>
      <pubDate>Wed, 02 Oct 2002 05:14:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pam-error-message-authentication-failed/m-p/2817199#M85744</guid>
      <dc:creator>Donald Kok</dc:creator>
      <dc:date>2002-10-02T05:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: PAM Error Message - Authentication failed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pam-error-message-authentication-failed/m-p/2817200#M85745</link>
      <description>We are completely locked out of our system as any user id...including root.  WE have replaced the passwd file with a generic one from the neconfig director...nothing works...HP seems stumped...any suggestions...this is not a Denial of Service attach.&lt;BR /&gt;&lt;BR /&gt;Any assistance is appreciated.&lt;BR /&gt;&lt;BR /&gt;We have checked all the PAM libraries for corruption and permissions...nothing is working.</description>
      <pubDate>Thu, 23 Oct 2003 18:55:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pam-error-message-authentication-failed/m-p/2817200#M85745</guid>
      <dc:creator>Edward Gruskin</dc:creator>
      <dc:date>2003-10-23T18:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: PAM Error Message - Authentication failed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pam-error-message-authentication-failed/m-p/2817201#M85746</link>
      <description>You need to go to the console of this machine and log on as root.&lt;BR /&gt;&lt;BR /&gt;That will unlock the root account.&lt;BR /&gt;&lt;BR /&gt;If that fails, boot the box and follow this procedure.&lt;BR /&gt;&lt;BR /&gt;interupt when you see the 10 second prompt&lt;BR /&gt;&lt;BR /&gt;bo &lt;BR /&gt;&lt;ENTER&gt;&lt;BR /&gt;Y(es) interact with the IPL(ISL?)&lt;BR /&gt;hpux -is&lt;BR /&gt;&lt;ENTER&gt;&lt;BR /&gt;&lt;BR /&gt;Now you are in single user mode.  You can now run the passwd command, but you'll have to give the full path of the command.&lt;BR /&gt;&lt;BR /&gt;Either there is a configuration with your system(likely) or someone tried to hack your box, hence the locked users.&lt;BR /&gt;&lt;BR /&gt;SEP&lt;/ENTER&gt;&lt;/ENTER&gt;</description>
      <pubDate>Thu, 23 Oct 2003 19:09:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pam-error-message-authentication-failed/m-p/2817201#M85746</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-10-23T19:09:04Z</dc:date>
    </item>
  </channel>
</rss>

