<?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 User process in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/user-process/m-p/3255809#M11569</link>
    <description>I have a RH linux server and create a user id for batch job processing , I found that sometimes there are many dead processes on the system , then other process can't be run , does linux limit the no. of process that the user id can run ?  thx</description>
    <pubDate>Wed, 21 Apr 2004 21:51:35 GMT</pubDate>
    <dc:creator>peterchu</dc:creator>
    <dc:date>2004-04-21T21:51:35Z</dc:date>
    <item>
      <title>User process</title>
      <link>https://community.hpe.com/t5/operating-system-linux/user-process/m-p/3255809#M11569</link>
      <description>I have a RH linux server and create a user id for batch job processing , I found that sometimes there are many dead processes on the system , then other process can't be run , does linux limit the no. of process that the user id can run ?  thx</description>
      <pubDate>Wed, 21 Apr 2004 21:51:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/user-process/m-p/3255809#M11569</guid>
      <dc:creator>peterchu</dc:creator>
      <dc:date>2004-04-21T21:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: User process</title>
      <link>https://community.hpe.com/t5/operating-system-linux/user-process/m-p/3255810#M11570</link>
      <description>Do you mean dead processes or zombies?&lt;BR /&gt;&lt;BR /&gt;I know of no limit on the number of processes a single user id can start.  I'd like to see some ps -ef data on the processes to start.&lt;BR /&gt;&lt;BR /&gt;Unix in general has a limit called nproc which is an overall number of processes allowed.&lt;BR /&gt;&lt;BR /&gt;You should also look at the batch jobs being spawned for obvious shell or other programming problems causing this.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 21 Apr 2004 22:03:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/user-process/m-p/3255810#M11570</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-04-21T22:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: User process</title>
      <link>https://community.hpe.com/t5/operating-system-linux/user-process/m-p/3255811#M11571</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;yes it does ;-) Run ulimit -a with this userid and you will see the current settings. This can be configured in /etc/scurity/limits.conf .&lt;BR /&gt;&lt;BR /&gt;For a longer discussion check&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.linux.com/howtos/Xterminals/advanced.shtml" target="_blank"&gt;http://www.linux.com/howtos/Xterminals/advanced.shtml&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Greetings, Martin</description>
      <pubDate>Wed, 21 Apr 2004 22:04:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/user-process/m-p/3255811#M11571</guid>
      <dc:creator>Martin P.J. Zinser</dc:creator>
      <dc:date>2004-04-21T22:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: User process</title>
      <link>https://community.hpe.com/t5/operating-system-linux/user-process/m-p/3255812#M11572</link>
      <description>thx replies,&lt;BR /&gt;&lt;BR /&gt;I tried ulimit -a, but still have qustion&lt;BR /&gt;&lt;BR /&gt;is "open file = 1024 " mean only 1024 files can be open at the same time ?&lt;BR /&gt;&lt;BR /&gt;is "max user processes = 7168" mean only 7168 processes can be run at the same time ? thx</description>
      <pubDate>Wed, 21 Apr 2004 23:10:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/user-process/m-p/3255812#M11572</guid>
      <dc:creator>peterchu</dc:creator>
      <dc:date>2004-04-21T23:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: User process</title>
      <link>https://community.hpe.com/t5/operating-system-linux/user-process/m-p/3255813#M11573</link>
      <description>Hi all,&lt;BR /&gt;yes, it tells you the max nr of  processes a user can have.&lt;BR /&gt;you can limit cputime too and other stuff.&lt;BR /&gt;&lt;BR /&gt;Check &lt;BR /&gt;# info bash&lt;BR /&gt;and the search for ulimit using&lt;BR /&gt;/ulimit [enter]&lt;BR /&gt;and then press "n" untill you find it.&lt;BR /&gt;&lt;BR /&gt;Peace, R.</description>
      <pubDate>Thu, 22 Apr 2004 03:01:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/user-process/m-p/3255813#M11573</guid>
      <dc:creator>Roberto Polli</dc:creator>
      <dc:date>2004-04-22T03:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: User process</title>
      <link>https://community.hpe.com/t5/operating-system-linux/user-process/m-p/3255814#M11574</link>
      <description>You can also set soft limit and hard limit. For instance, &lt;BR /&gt;&lt;BR /&gt;soft nproc 32&lt;BR /&gt;hard nproc 64&lt;BR /&gt;&lt;BR /&gt;Which generally gives users max process number limit 32 but if someone needs more they can raise the limit per session up to the hard limit (64).&lt;BR /&gt;&lt;BR /&gt;Yu</description>
      <pubDate>Fri, 23 Apr 2004 09:20:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/user-process/m-p/3255814#M11574</guid>
      <dc:creator>Yu Wang_1</dc:creator>
      <dc:date>2004-04-23T09:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: User process</title>
      <link>https://community.hpe.com/t5/operating-system-linux/user-process/m-p/3255815#M11575</link>
      <description>You can configure the limits in /etc/security/limits.conf.  &lt;BR /&gt;PAM will use this to configure the limits when it validates the processes.&lt;BR /&gt;Red Hat may have the limits.conf in another directory.&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Apr 2004 09:58:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/user-process/m-p/3255815#M11575</guid>
      <dc:creator>Bill Thorsteinson</dc:creator>
      <dc:date>2004-04-23T09:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: User process</title>
      <link>https://community.hpe.com/t5/operating-system-linux/user-process/m-p/3255816#M11576</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;surely, there is such limit there as same as other *NIX. but lift that process limit bar won't fix the problem. &lt;BR /&gt;&lt;BR /&gt;see here for your choices&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.linuxsa.org.au/tips/zombies.html" target="_blank"&gt;http://www.linuxsa.org.au/tips/zombies.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;and may need look at OS patch or your batch shell scripts too to address root cause.&lt;BR /&gt;&lt;BR /&gt;Cheers !&lt;BR /&gt;&lt;BR /&gt;YJ</description>
      <pubDate>Fri, 23 Apr 2004 13:11:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/user-process/m-p/3255816#M11576</guid>
      <dc:creator>Yong_7</dc:creator>
      <dc:date>2004-04-23T13:11:55Z</dc:date>
    </item>
  </channel>
</rss>

