<?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: Ulimit setting problem in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ulimit-setting-problem/m-p/4662054#M478656</link>
    <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;root should be able to do this.&lt;BR /&gt;&lt;BR /&gt;oracle user can not.&lt;BR /&gt;&lt;BR /&gt;You may need to set this for root and then modify the oracle user profile to set this for the user.&lt;BR /&gt;&lt;BR /&gt;Otherwise go for a REALLY big number.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Thu, 15 Jul 2010 18:58:13 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2010-07-15T18:58:13Z</dc:date>
    <item>
      <title>Ulimit setting problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ulimit-setting-problem/m-p/4662053#M478655</link>
      <description>&lt;!--!*#--&gt;$ uname -a&lt;BR /&gt;HP-UX maa2tamh B.11.31 U ia64 0909076740 unlimited-user license&lt;BR /&gt;$ ulimit -aH&lt;BR /&gt;time(seconds)        unlimited&lt;BR /&gt;file(blocks)         unlimited&lt;BR /&gt;data(kbytes)         1048576&lt;BR /&gt;stack(kbytes)        131072&lt;BR /&gt;memory(kbytes)       unlimited&lt;BR /&gt;coredump(blocks)     unlimited&lt;BR /&gt;nofiles(descriptors) 4096&lt;BR /&gt;&lt;BR /&gt;DBA asked to set the ulimit size to unlimited for stacks and data, but i am unable to set , got the below error, please advise how to set ulimit as unlimted for a particular user.&lt;BR /&gt;&lt;BR /&gt;$ ulimit -s unlimited&lt;BR /&gt;sh: ulimit: The specified value exceeds the user's allowable limit.</description>
      <pubDate>Thu, 15 Jul 2010 18:39:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ulimit-setting-problem/m-p/4662053#M478655</guid>
      <dc:creator>Sakthimurugan.S</dc:creator>
      <dc:date>2010-07-15T18:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: Ulimit setting problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ulimit-setting-problem/m-p/4662054#M478656</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;root should be able to do this.&lt;BR /&gt;&lt;BR /&gt;oracle user can not.&lt;BR /&gt;&lt;BR /&gt;You may need to set this for root and then modify the oracle user profile to set this for the user.&lt;BR /&gt;&lt;BR /&gt;Otherwise go for a REALLY big number.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 15 Jul 2010 18:58:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ulimit-setting-problem/m-p/4662054#M478656</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2010-07-15T18:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: Ulimit setting problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ulimit-setting-problem/m-p/4662055#M478657</link>
      <description>Yes already i tried this able to set as root, but its not reflecting in user side, itf the users put ulimit -a , still its hows the old value, but if i try to increase the value, i got this error.&lt;BR /&gt;sh: ulimit: The specified number is not valid for this command.</description>
      <pubDate>Thu, 15 Jul 2010 19:11:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ulimit-setting-problem/m-p/4662055#M478657</guid>
      <dc:creator>Sakthimurugan.S</dc:creator>
      <dc:date>2010-07-15T19:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: Ulimit setting problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ulimit-setting-problem/m-p/4662056#M478658</link>
      <description>man 5 privileges [the user in question must have PRIV_LIMIT to raise limits above the current hard limit].&lt;BR /&gt;&lt;BR /&gt;In practice, though -- you would be better served raising maxdsiz/maxdsiz_64bit and telling the DBA unlimited stacks are a complete fantasy they aren't going to get. Regardless of what the rlimit claims -- the stack is still always going to be maxssiz/maxssiz_64bit bytes (rounded down to a unit of `getconf _SC_PAGE_SIZE` since the system only really works by pages) away from the end of the process private address space. Hence, it doesn't matter what your limit claims -- when you hit the end of the address space, that's it.&lt;BR /&gt;&lt;BR /&gt;The data limit is still enforced as maxdsiz/maxdsiz_64bit (the value at the time of process creation if the unlimited setting was already in effect, the current limit if the ulimit (setrlimit(2) really) change was made after the process was already running. Granted, that doesn't really have to be that way as the stack layout does. And also, of course -- there's no guarantee you won't hit other private objects like mmap well before that.&lt;BR /&gt;&lt;BR /&gt;So in short -- you may want to just raise your maxdsiz tunable (although unless the binary is using one of the non-default address space layouts, the private data space is 1Gb by default for 32-bit -- so it won't mean anything, you'll really get (1Gb - maxssiz) for your private objects which is data+private mmap + thread stacks, etc....) and explain to your DBA that raising the stack limit means lowering the space for data so they can decide if they really need it.&lt;BR /&gt;&lt;BR /&gt;If they don't really need unlimited but just want it to feel good or satisfy an install script -- then by all means give them the privilege and let them set it.</description>
      <pubDate>Thu, 15 Jul 2010 20:09:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ulimit-setting-problem/m-p/4662056#M478658</guid>
      <dc:creator>Don Morris_1</dc:creator>
      <dc:date>2010-07-15T20:09:21Z</dc:date>
    </item>
  </channel>
</rss>

