Linuxにファイルディスクリプタの上限値を変更方法
解決方法
1.[root@SamuluIndex ~]# ulimit -n
1024
2.一時的な変更
[root@SamuluIndex ~]# ulimit -n 65535
[root@SamuluIndex ~]# ulimit -n
65535
3./etc/security/limits.conf最後に下記の2行目を追加
* soft nofile 65535
* hard nofile 65535
Coding Changes the World
解決方法
1.[root@SamuluIndex ~]# ulimit -n
1024
2.一時的な変更
[root@SamuluIndex ~]# ulimit -n 65535
[root@SamuluIndex ~]# ulimit -n
65535
3./etc/security/limits.conf最後に下記の2行目を追加
* soft nofile 65535
* hard nofile 65535