<?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: UNIX user id limitation in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-user-id-limitation/m-p/3640616#M239145</link>
    <description>This is one of those things that even if you can, you really don't want to do. This has been a UNIX feature for decades and any changes will break legacy code.</description>
    <pubDate>Mon, 03 Oct 2005 14:30:30 GMT</pubDate>
    <dc:creator>A. Clay Stephenson</dc:creator>
    <dc:date>2005-10-03T14:30:30Z</dc:date>
    <item>
      <title>UNIX user id limitation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-user-id-limitation/m-p/3640615#M239144</link>
      <description>Is there a way to bypass the 8 character limit for setting up a UNIX user id?  &lt;BR /&gt;&lt;BR /&gt;I have a couple of users who's user names are actually longer than 8 characters.  I have been having to truncate their user id names to fit this limit.&lt;BR /&gt;&lt;BR /&gt;Is there anyone who can explain to me why HP has this low character limit? Is there a patch I can install that would increase this limit?&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Mon, 03 Oct 2005 14:24:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-user-id-limitation/m-p/3640615#M239144</guid>
      <dc:creator>David Land</dc:creator>
      <dc:date>2005-10-03T14:24:12Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX user id limitation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-user-id-limitation/m-p/3640616#M239145</link>
      <description>This is one of those things that even if you can, you really don't want to do. This has been a UNIX feature for decades and any changes will break legacy code.</description>
      <pubDate>Mon, 03 Oct 2005 14:30:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-user-id-limitation/m-p/3640616#M239145</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-10-03T14:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX user id limitation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-user-id-limitation/m-p/3640617#M239146</link>
      <description>try this &lt;BR /&gt;&lt;BR /&gt;/usr/lbin/modprdef -m maxpwln=80&lt;BR /&gt;&lt;BR /&gt;User can have more than 8 character password .&lt;BR /&gt;&lt;BR /&gt;This is from an earlier forum .I tested this just now and found working .Please test it and update the forum.&lt;BR /&gt;&lt;BR /&gt;thx,&lt;BR /&gt;bl.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Oct 2005 15:01:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-user-id-limitation/m-p/3640617#M239146</guid>
      <dc:creator>baiju_3</dc:creator>
      <dc:date>2005-10-03T15:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX user id limitation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-user-id-limitation/m-p/3640618#M239147</link>
      <description>Altrhough the OS has been upgraded to accept longer names, applications and some utilities still have the 8 character limit. NIS is a case in point. Even though the OS will let you have &amp;gt;8 characters, NIS wants no more than 8&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Oct 2005 15:03:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-user-id-limitation/m-p/3640618#M239147</guid>
      <dc:creator>Rick Garland</dc:creator>
      <dc:date>2005-10-03T15:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX user id limitation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-user-id-limitation/m-p/3640619#M239148</link>
      <description>So there is nothing that can be done?&lt;BR /&gt;&lt;BR /&gt;I understand the reasoning as to why the password field will only recognize the first eight characters.  Anything after that does not matter.  What I don't understand is the reasoning behind having an 8 character limit to the user id.&lt;BR /&gt;&lt;BR /&gt;I will just keep doing what I am doing.</description>
      <pubDate>Mon, 03 Oct 2005 15:05:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-user-id-limitation/m-p/3640619#M239148</guid>
      <dc:creator>David Land</dc:creator>
      <dc:date>2005-10-03T15:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX user id limitation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-user-id-limitation/m-p/3640620#M239149</link>
      <description>It was simply a standard adopted a long time ago by the various UNIX flavors. Newer definitions of the getpwxxx() functions simply have a pointer to char for the login field (i.e. char *login) and the actual value is dynamically assigned. However, older applications (or modern ports of older applications) often simply have char login[9]; /* 8 + the terminal NUL */ and longer variables will simply overflow into the next field -- often with less than desirable results. In many cases, there won't be program crashes but instead subtle data corruption. Moreover, if you have to maintain accounts on various platforms, you will find that some flavors of UNIX allow more than 8 characters and others do not. The safe play is to stay within the 8 character limit.</description>
      <pubDate>Mon, 03 Oct 2005 15:23:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-user-id-limitation/m-p/3640620#M239149</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-10-03T15:23:04Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX user id limitation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-user-id-limitation/m-p/3640621#M239150</link>
      <description>Okay.  Thanks for your help in answering my question.&lt;BR /&gt;&lt;BR /&gt;I wanted to ask just in case there was a way to bypass this limitation.&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Oct 2005 15:31:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-user-id-limitation/m-p/3640621#M239150</guid>
      <dc:creator>David Land</dc:creator>
      <dc:date>2005-10-03T15:31:07Z</dc:date>
    </item>
  </channel>
</rss>

