Maximum number of users allowed


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Maximum number of users allowed
# 8  
Old 06-18-2004
uname -l

On our HPUX 11.0 boxes shows "two-user license" - with about 150 users.... we don't believe the output from uname.

sysdef does work.
# 9  
Old 06-18-2004
HP sells licenses based on the number of users on a box. But they don't enforce the license via the login program if you connect via the network. Originally, everyone had an ascii terminal connected to one host or another. By signing on that directly connected box, you were counted against the license for that box. HP's lawyers, in their wisdom, decided that since you had already consumed one license by signing on your directly connected system, you should not consume another if you rlogined to another box. This left HP with a very lamely enforced license policy. This was discussed at length, but they decided this was better than erroreously not allowing someone to login.

But the idea is that every user of HP-UX actually is using a license somewhere. If you're not doing that, I *think* that you are breaking the HP-UX license agreement. But this is not my area of expertise.

npty may or may not be important. It depends on how you connected. Try this: "telnet localhost", sign on, and then run "pty". You will see the message "not a pty". Now run the command "tty". (I see /dev/pts/ta.) The pty program sorta told a fib. telnet is using a pty, but it's a STREAMS based pty. Originally, HP-UX only had BSD style pty's. They continue to exist and some programs use them. But the STREAMS based pty's are much better. The relevant kernel parameters:
npty controls the max number of BSD pty's.
nstrpty controls the max number of STREAMS based pty's.

And even when BSD pty's were the only kind, 100 BSD pty's did not guarantee 100 users. Programs like expect and script can allocate a pty as well.

And users need other kernel resources. There is a kernel parameter called maxusers which is used to scale these. maxusers is not displayed by sysdef. But you can view it with:
kmtune -q maxusers
# 10  
Old 06-18-2004
Our company has "site" licensing so we are not in violation...
# 11  
Old 06-18-2004
Ours does as well...

we have 4 K-series boxes and 3 V-series boxes with about 250-300 users on a really large SAN.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Web Development

What is the maximum users we can go in weblogic and Oracle?

what is the maximum users we can go in weblogic and Oracle lets see we have appclaition(java) runs on weblogic and backend os oracle what are the maximum users i can use? (3 Replies)
Discussion started by: ded325
3 Replies

2. UNIX for Dummies Questions & Answers

Maximum number of data in Python

Hi all, I would like to save my output data in two columns. I tried print(x,y) but have two problems: 1. There are ~10000 values for each x and y, but the intermediates are omitted; 2. I'd like to list data in two columns instead of two arrays (BTW, it's fine as I can format it using other... (3 Replies)
Discussion started by: sxiong
3 Replies

3. UNIX for Dummies Questions & Answers

Maximum number of sed squeezing

Hi all, What is the maximum number of sed squeezing in one shell?? I've surprised with this message when I squeezed 50 sed in the same shell: 253: Identifier too long - maximum length is 18.This is what I've did in my sed query | sed -e "s/ 0 /Default /" | sed -e "s/ 1 ... (2 Replies)
Discussion started by: leo_ultra_leo
2 Replies

4. Shell Programming and Scripting

Maximum number from input by user

I am trying to calculate the maximum number from four numbers input by the user. I have the following code, but it does not work. It says there's an error with the last line "done". Any help would be appreciated. max=0 echo "Please enter four numbers: " for i in 1 2 3 4 do read number... (17 Replies)
Discussion started by: itech4814
17 Replies

5. AIX

TCP port 70000 on AIX 6.1? (Surely higher than allowed maximum?)

Looking at /etc/services on AIX 6.1, I noticed some bizarre port numbers which exceed the 16-bit maximum port number for TCP (i.e. they are higher than 65535.) sco_printer 70000/tcp sco_spooler # For System V print IPC sco_s5_port 70001/tcp lpNet_s5_port ... (5 Replies)
Discussion started by: garethr
5 Replies

6. UNIX for Dummies Questions & Answers

ls - maximum number of files

what is the maximum number ls can list down (6 Replies)
Discussion started by: karnan
6 Replies

7. UNIX for Dummies Questions & Answers

maximum number of arguments

Hi, What is the maximum number of arguments that could be passed to zsh ? To find out that I tried a simple script. And the maximum number of arguments that could be passed turned out to be 23394 #! /bin/zsh arg=1 i=1 subIndex=23000 while do arg=$arg" "$i i=$(($i + 1))... (9 Replies)
Discussion started by: matrixmadhan
9 Replies

8. UNIX for Advanced & Expert Users

RHEL 4, simltaneous maximum ftp/telnet sessions allowed

Hi Users, Kindly help me with below query of mine. Using Red Hat Linux Enterprise Edition as the client how many simultaneous 1) Maximum FTP sessions are allowed 2) Maximum Telnet sessions are allowed 3) any special settings need to be enabled for maximum telnet and ftp sessions on... (2 Replies)
Discussion started by: newbie07
2 Replies

9. Red Hat

RHEL 4, simltaneous maximum ftp/telnet sessions allowed

Hi Users, Kindly help me with below query of mine. Using Red Hat Linux Enterprise Edition as the client how many simultaneous 1) Maximum FTP sessions are allowed 2) Maximum Telnet sessions are allowed 3) any special settings need to be enabled for maximum telnet and ftp sessions on... (2 Replies)
Discussion started by: newbie07
2 Replies
Login or Register to Ask a Question