How to Find AIX system parameters


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users How to Find AIX system parameters
# 1  
Old 01-24-2007
How to Find AIX system parameters

System Parameters:
maximum number of processes = 2048

Network parameters:
ipqmaxlen - 512
rfc1323 - 1
sb_max - 1310720 (2*655360)
tcp_recvspace - 65536
tcp_sendspace - 65536
Udp_recvspace - 655360
Udp_sendspace 65536
# 2  
Old 01-25-2007
For system parameters it is likely to be the sys0 device
Code:
lsattr -El sys0 # to display
chdev -l sys0 -a maxuproc=2048 # to set new value

Network parameters use 'no' and read manual for how to set value for a parameter
Code:
no -a # to display

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Command to find file system details on AIX

Hi , Could you please tell me how to find the following on AIX? 1.Command to find file system details? 2.What are all the files exist under a specific directory along with their sizes? In general we use, du -sh * | grep M under a directory which returns files having size of MB,... (18 Replies)
Discussion started by: Maddy123
18 Replies

2. AIX

Network tuning parameters on AIX

Hi, we've a gigabit Ethernet adapter. And we wanted to improve the performance by tuning network parameters. so' as per IBM info center, http://publib.boulder.ibm.com/infocenter/aix/v7r1/index.jsp?topic=%2Fcom.ibm.aix.prftungd%2Fdoc%2Fprftungd%2Fnetw_opt.htm we tried changing the tuning... (2 Replies)
Discussion started by: System Admin 77
2 Replies

3. AIX

Where is the same TCP parameters in AIX?

I am try to tuning a parameter in AIX 5L and 6 (for performance issue.) I find a link(https://forums.oracle.com/forums/thread.jspa?threadID=886358) The thread mention two parameter below, I can use "ndd" command to tuning. tcp_deferred_ack_interval = 2 tcp_deferred_ack_max = 2 but I... (3 Replies)
Discussion started by: nnnnnnine
3 Replies

4. Solaris

How to get system parameters / information on Sun Solaris 5.10

Hello to everyone, i am new to Sun Solaris. i have Solaris 5.10 installed on the X86 platform. i am writing a script which gathers some system information. but i can not find some of the parameter from the system can any one please suggest to way to find these params. shell command will be... (1 Reply)
Discussion started by: nikhil.sigpro
1 Replies

5. AIX

System Parameters

Hi, Does anyone know what the System Parameter 'SHMSZ' is and how do I find it? I'm looking for the shared memory size of this particular parameter. Thanks. ---------- Post updated at 11:35 AM ---------- Previous update was at 11:31 AM ---------- Does SHMSZ mean 'Shared Memory SiZe? (2 Replies)
Discussion started by: bbbngowc
2 Replies

6. AIX

AIX 6.1 Kernal Parameters ulimit

Hello, How can I setup the ulimit for memory permanent ulimit -m unlimited ulimit -a Output from the ulimit command should be similar to the following:time(seconds) unlimited file(blocks) unlimited data(kbytes) 2097152 stack(kbytes) 32768... (4 Replies)
Discussion started by: filosophizer
4 Replies

7. Programming

c++ : Use of System() to execute .exe with parameters

Hello, I 've trie to execute a a program with parameters unsuccessfully and i take the above message : "The system cannot find the path specified." I used a variaton of the above command : system("\"C:\\xxx\\xxx\\xxx.exe -xxx -xxx xxx.xxx xxx.xxx xxx.xxx\""); Thanks in advance (4 Replies)
Discussion started by: eusta
4 Replies

8. Solaris

rsh commands not getting executed from Solaris 10 System to AIX System

Hi Friends, I am trying to execute rsh commands from Solaris 10 system to AIX system. When I give; Solaris10# rsh <hostname> ls -l , it gives me an error rshd : 0826-826 The host name for your address is not known At the same time, Solaris10# rsh <hostname> ---- gives me remote shell of... (25 Replies)
Discussion started by: jumadhiya
25 Replies

9. Shell Programming and Scripting

Is it possible to find parameters?

I have a shell script and i pass 3 parameters to it. Just give you an example test.sh a=y/n b=y/n c=y/n Pass y/n to a, b and c then it will decide what to do. test.sh a=y b=n c=n What i would like to do is rather then passing 3 parameter just pass a=y (only a is doing something like... (2 Replies)
Discussion started by: J_ang
2 Replies

10. Cybersecurity

AIX: Default Password Parameters

I am working on AIX flavor of Unix and was trying to run a script to obtain default settings of user passwords. The script uses the command to obtain default valid user attributes for: /etc/security/user for some reason, the message says- cat: cannot open /etc/security/user... (1 Reply)
Discussion started by: eysheikah
1 Replies
Login or Register to Ask a Question