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

From Wiki
No edit summary
Line 37: Line 37:
= Articles =
= Articles =
* [[AIX:Erro "File too large" ao realizar scp de um arquivo para o AIX]]
* [[AIX:Erro "File too large" ao realizar scp de um arquivo para o AIX]]
* [https://www.ibm.com/support/pages/node/6321345 Connect:Direct for UNIX: File Transfer Performance]


* [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]

Revision as of 11:41, 26 September 2022

AIX Tuning

Networking

Check the current values of the network tuning parameters:

no -a | more

or

ifconfig en0
en0:
...
        tcp_sendspace 131072 tcp_recvspace 65536 rfc1323 0


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

Ver também