You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I increase the system max file open in LINUX success,but my process always 1024
#cat /proc/4918/limits
Limit Soft Limit Hard Limit Units
...
Max open files 1024 1024 files
...
#ulimit -n
655350
The text was updated successfully, but these errors were encountered:
The proc / sysctl limit is the global limit, you may need to add a config to the /etc/limits.d/ or /etc/security/limits.d/ folder for your specific user.
For example if your username is beargrass you could add a new file to the limits.d directory called beargrass.conf
# principal type item value
beargrass soft nofile 655350
You can also increase the limits for an entire group by user @groupname instead of the username.
I increase the system max file open in LINUX success,but my process always 1024
#cat /proc/4918/limits
Limit Soft Limit Hard Limit Units
...
Max open files 1024 1024 files
...
#ulimit -n
655350
The text was updated successfully, but these errors were encountered: