<?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: inetd start error  .. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/inetd-start-error/m-p/2692323#M586403</link>
    <description>From the link to the other post here is the problem. But does anyone know why this is for security reason? &lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong:&lt;BR /&gt;Hi, &lt;BR /&gt;&lt;BR /&gt;Did you recently enabled trusted systems (TCB)? I ever encountered this symptom after I convert the system from untrusted to trusted . For security reasons, TCB set the default umask to 07077. To overcome the default umask, you need to specify your umask settings in /etc/profile eg. umask 022</description>
    <pubDate>Thu, 28 Mar 2002 21:54:32 GMT</pubDate>
    <dc:creator>someone_4</dc:creator>
    <dc:date>2002-03-28T21:54:32Z</dc:date>
    <item>
      <title>inetd start error  ..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inetd-start-error/m-p/2692316#M586396</link>
      <description>I decided to start another post on my inetd error. &lt;BR /&gt;&lt;BR /&gt;/sbin/init.d/inetd start &lt;BR /&gt;Internet Services started &lt;BR /&gt;&lt;BR /&gt;/sbin/init.d/inetd[53]: umask: The specified number is not valid for this comman &lt;BR /&gt;d. &lt;BR /&gt;&lt;BR /&gt;It is rather odd. I check /etc/inetd.conf and I dont have any odd umask. So I looked at /sbin/init.d/inetd&lt;BR /&gt;&lt;BR /&gt;And the start part of the script has something about a umask. &lt;BR /&gt;&lt;BR /&gt;'start')&lt;BR /&gt;        if [ -f /etc/rc.config ]; then&lt;BR /&gt;                . /etc/rc.config&lt;BR /&gt;        else&lt;BR /&gt;                echo "ERROR: /etc/rc.config defaults file MISSING"&lt;BR /&gt;        fi&lt;BR /&gt;&lt;BR /&gt;        mask=`umask`&lt;BR /&gt;        umask 000&lt;BR /&gt;&lt;BR /&gt;        [ -x /usr/sbin/inetd ] &amp;amp;&amp;amp; /usr/sbin/inetd $INETD_ARGS&lt;BR /&gt;        set_return&lt;BR /&gt;        if [ $rval -eq 0 ]; then&lt;BR /&gt;                echo "Internet Services started"&lt;BR /&gt;        else&lt;BR /&gt;                echo "Unable to start Internet Services"&lt;BR /&gt;        fi&lt;BR /&gt;&lt;BR /&gt;        umask $mask&lt;BR /&gt;        ;;&lt;BR /&gt;&lt;BR /&gt;But that is the same as it is on other servers. &lt;BR /&gt;&lt;BR /&gt;The difference is that on the server that I am getting the error on .. &lt;BR /&gt;&lt;BR /&gt;#umask&lt;BR /&gt;07077&lt;BR /&gt;&lt;BR /&gt;#umask -S&lt;BR /&gt;u=rwx,g=,o=&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;on the other&lt;BR /&gt;&lt;BR /&gt;#umask&lt;BR /&gt;00&lt;BR /&gt;&lt;BR /&gt;# umask -S&lt;BR /&gt;u=rwx,g=rwx,o=rwx&lt;BR /&gt;&lt;BR /&gt;looks like something somewhere is setting that umask that is could probably be making that start up script to fail .. Am I on the right track?&lt;BR /&gt;&lt;BR /&gt;Richard&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 27 Mar 2002 22:34:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inetd-start-error/m-p/2692316#M586396</guid>
      <dc:creator>someone_4</dc:creator>
      <dc:date>2002-03-27T22:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: inetd start error  ..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inetd-start-error/m-p/2692317#M586397</link>
      <description>Like a bloodhound my man.&lt;BR /&gt;&lt;BR /&gt;Jeff</description>
      <pubDate>Wed, 27 Mar 2002 22:36:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inetd-start-error/m-p/2692317#M586397</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2002-03-27T22:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: inetd start error  ..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inetd-start-error/m-p/2692318#M586398</link>
      <description>Richard,&lt;BR /&gt;&lt;BR /&gt;This is resulting from the 53rd line of inetd startup script.&lt;BR /&gt;&lt;BR /&gt;53rd line is exactly umask $mask&lt;BR /&gt;&lt;BR /&gt;mask is getting initialized on line 42 with the command "umask"&lt;BR /&gt;&lt;BR /&gt;So, check your /etc/profile or your .profile or root's .profile to see if you are setting a wrong umask.&lt;BR /&gt;&lt;BR /&gt;Correct it if so.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Wed, 27 Mar 2002 22:40:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inetd-start-error/m-p/2692318#M586398</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2002-03-27T22:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: inetd start error  ..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inetd-start-error/m-p/2692319#M586399</link>
      <description>Hi Richard,&lt;BR /&gt;&lt;BR /&gt;Check your /etc/inetd.conf file and see if you have defined an invalid umsak with any of the daemon.&lt;BR /&gt;&lt;BR /&gt;Hope this help.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
      <pubDate>Wed, 27 Mar 2002 23:42:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inetd-start-error/m-p/2692319#M586399</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2002-03-27T23:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: inetd start error  ..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inetd-start-error/m-p/2692320#M586400</link>
      <description>umsak??&lt;BR /&gt;&lt;BR /&gt;Must be a new built in shell variable....</description>
      <pubDate>Wed, 27 Mar 2002 23:48:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inetd-start-error/m-p/2692320#M586400</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2002-03-27T23:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: inetd start error  ..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inetd-start-error/m-p/2692321#M586401</link>
      <description>Richard,&lt;BR /&gt;&lt;BR /&gt;This thread should help:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://bizforums.itrc.hp.com/cm/QuestionAnswer/1,,0x39bb854994d9d4118fef0090279cd0f9,00.html" target="_blank"&gt;http://bizforums.itrc.hp.com/cm/QuestionAnswer/1,,0x39bb854994d9d4118fef0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Look for Steven's suggestion..&lt;BR /&gt;&lt;BR /&gt;-Shabu</description>
      <pubDate>Thu, 28 Mar 2002 01:37:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inetd-start-error/m-p/2692321#M586401</guid>
      <dc:creator>SHABU KHAN</dc:creator>
      <dc:date>2002-03-28T01:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: inetd start error  ..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inetd-start-error/m-p/2692322#M586402</link>
      <description>Check the umask value set at "/sbin/rc"&lt;BR /&gt;&lt;BR /&gt;"cat /sbin/rc | grep umask"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;-K.Vijay</description>
      <pubDate>Thu, 28 Mar 2002 05:54:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inetd-start-error/m-p/2692322#M586402</guid>
      <dc:creator>K.Vijayaragavan.</dc:creator>
      <dc:date>2002-03-28T05:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: inetd start error  ..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inetd-start-error/m-p/2692323#M586403</link>
      <description>From the link to the other post here is the problem. But does anyone know why this is for security reason? &lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong:&lt;BR /&gt;Hi, &lt;BR /&gt;&lt;BR /&gt;Did you recently enabled trusted systems (TCB)? I ever encountered this symptom after I convert the system from untrusted to trusted . For security reasons, TCB set the default umask to 07077. To overcome the default umask, you need to specify your umask settings in /etc/profile eg. umask 022</description>
      <pubDate>Thu, 28 Mar 2002 21:54:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inetd-start-error/m-p/2692323#M586403</guid>
      <dc:creator>someone_4</dc:creator>
      <dc:date>2002-03-28T21:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: inetd start error  ..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inetd-start-error/m-p/2692324#M586404</link>
      <description>Richard,&lt;BR /&gt;&lt;BR /&gt;Just as a caveat to this post, always make a habit of setting the umask in /etc/profile to:&lt;BR /&gt;&lt;BR /&gt;umask 022&lt;BR /&gt;&lt;BR /&gt;when the building the system is the best time. This will avoid many problems later on by the system creating oodles of files with inappropriate permissions like 666 and ownded by root.&lt;BR /&gt;&lt;BR /&gt;Michael</description>
      <pubDate>Thu, 28 Mar 2002 22:08:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inetd-start-error/m-p/2692324#M586404</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2002-03-28T22:08:37Z</dc:date>
    </item>
  </channel>
</rss>

