Extending File Descriptors
This section describes how to compile WildFly 17.0.0.Final on CentOS 8.1.
- Open the limits.conf file.
vim /etc/security/limits.conf
- Press i to enter the insert mode, and add the following content to the file:
* soft nofile 102400 * hard nofile 102400
- * indicates all users.
- hard indicates the strict setting. The value cannot exceed the set value.
- soft indicates the alarm threshold. If the threshold is exceeded, an alarm is generated.
- Press Esc, type :wq!, and press Enter to save the file and exit.
- Restart the server to make the configuration take effect.
Parent topic: Configuring the Installation Environment