- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: 1.20 unlimited user license
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-14-2006 02:39 AM
тАО09-14-2006 02:39 AM
I just did a swlist of our current 10.20 K420 server and did not see the unlimited user license software installed on our server. I'd definitely want to add this if I still can?
Does anyone know where/how I can get it?
TIA
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-14-2006 02:43 AM
тАО09-14-2006 02:43 AM
Re: 1.20 unlimited user license
Since 10.20 is no longer supported, I'm not sure taht you are going to find the product.
However, unless you have an issue with serial-connections exceeding your license limit, I wouldn't worry. Even with a 2-user license, you can have as many network connections as you want.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-14-2006 02:52 AM
тАО09-14-2006 02:52 AM
Re: 1.20 unlimited user license
We have a 32-user license. Seems that after 69 users on the system, no one else can log in. They don't get an error, just automatically disconnected when trying to connect.
I've maxed my kernel settings/disk space. When I try to increase npty/nsptry and stuff, I get an error that there is not enough space and I have no choice but to undo my changes.....
So, it looks like our box has finally reached it's max. Was wishful thinking....
anyone have any ideas?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-14-2006 02:57 AM
тАО09-14-2006 02:57 AM
Re: 1.20 unlimited user license
Unlimited User License for HP-UX 10.20 and 11.0
http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en&cc=us&swItem=wk145en&jumpid=reg_R1002_USEN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-14-2006 03:28 AM
тАО09-14-2006 03:28 AM
Solution"We have a 32-user license. Seems that after 69 users on the system, no one else can log in. They don't get an error, just automatically disconnected when trying to connect."
This is not a user license problem unless you have more than 30 modems or serial (RS-232) ports on your system.
"I've maxed my kernel settings/disk space. When I try to increase npty/nsptry and stuff, I get an error that there is not enough space and I have no choice but to undo my changes....."
You can (and should) increase npty/nstrpty but this will not cause any space issue. There is something much more fundamentally worng with your system. Do you have error messages in syslog.log?
There is no reason to change any kernel parameters except npty and nstrpty. The current value of npty/nstrpty will limit the number of network connections. These are not user licenses. User licenses only apply to modem and serial port logins. You can have thousands of network users as long as there are enough pty device files and the limits for npty/nstrpty must match the available device files.
Now the words "not enough space" in HP-UX don't refer to disk at all but usually is associated with errno 12 or ENOMEM, which in English means "out of RAM". This is not related to your pty problem, but is because SAM (and it's child processes) need some additional memory and you've run out of swap space. Note that you can use a lot more than 100% of your RAM -- that's what swap space is for.
So the first thing to do is to find all the running processes that consume a lot of memory:
UNIX95=1 ps -o vsz,pid,ppid,args | sort -rn | head -20
The above is all one command -- the UNIX95=1 is a temporary variable to enable the -o options in ps. The largest processes wilol be sirted to the top of the list. vsz is the memory used in Kbytes. If any of these can be terminated gracefully, go ahead and do so. If you're running a database, shutdown the database for a few minutes. That should clear up the space error. Also check that your max_dbc_pct value is NOT 50 -- it should be approximately 400-800 megs but since it is a percentage of RAM, calculate the % needed to represent about 400-800 megs of your RAM.
Now you should be able to increase npty/nstrpty value to allow more users. If 70 is the limit, change it to 200 and you won't have to worry about it anymore.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-14-2006 03:33 AM
тАО09-14-2006 03:33 AM
Re: 1.20 unlimited user license
UNIX95=1 ps -e -o vsz,pid,ppid,args | sort -rn | head -20
Obviously I have a defective keyboard...
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-14-2006 03:36 AM
тАО09-14-2006 03:36 AM
Re: 1.20 unlimited user license
As always, I appreciate all of the quick responses and ideas.
THANK YOU!!!!!!!!!