IBM Sterling Connect:Direct : Performance on AIX: Difference between revisions

From Wiki
(Criou a página com " * [https://www.ibm.com/docs/en/was-nd/8.5.5?topic=systems-tuning-aix Tune AIX operating system for WebSphere Application Server] * [https://community.ibm.com/community/us...")
 
No edit summary
Line 1: Line 1:


Check the current values of the network tuning parameters:
no -a | more
== AIX file descriptors (ulimit) ==
Specifies the various restrictions on resource usage on the user account.
Check the change with the following command
# ulimit -a
...
'''open files                      (-n) 2000'''
Perform the following steps to change the open file limit to 10,000 files. Edit the /etc/security/limits file.
nofiles =  10000
nofiles_hard = 10000
Save and close the file, logoff from the system, and logon again
= Articles =
* [AIX:Erro "File too large" ao realizar scp de um arquivo para o AIX]


* [https://www.ibm.com/docs/en/was-nd/8.5.5?topic=systems-tuning-aix Tune AIX operating system for WebSphere Application Server]
* [https://www.ibm.com/docs/en/was-nd/8.5.5?topic=systems-tuning-aix Tune AIX operating system for WebSphere Application Server]


* [https://community.ibm.com/community/user/power/blogs/jim-cunningham1/2020/06/22/aix-network-tuning-for-10ge-and-virtual-network AIX Network Tuning for 10Ge and Virtual Network]
* [https://community.ibm.com/community/user/power/blogs/jim-cunningham1/2020/06/22/aix-network-tuning-for-10ge-and-virtual-network AIX Network Tuning for 10Ge and Virtual Network]
* [https://techchannel.com/SMB/01/2014/tuning-aix-network-performance Tuning AIX Network Performance]


= Ver também =
= Ver também =

Revision as of 11:36, 26 September 2022

Check the current values of the network tuning parameters:

no -a | more


AIX file descriptors (ulimit)

Specifies the various restrictions on resource usage on the user account.

Check the change with the following command

# ulimit -a
...
open files                      (-n) 2000

Perform the following steps to change the open file limit to 10,000 files. Edit the /etc/security/limits file.

nofiles =  10000 
nofiles_hard = 10000

Save and close the file, logoff from the system, and logon again


Articles

  • [AIX:Erro "File too large" ao realizar scp de um arquivo para o AIX]

Ver também