发现了一个高版本ubuntu的一个bug,无法修改open file limit

第一次尝试

敲入ulimit -n 65535
ulimit -n并没有修改成功

第二次尝试

/etc/security/limits.conf中添加

1
2
3
4
*                hard    nofile          65535
* soft nofile 65535
root soft nofile 65535
root hard nofile 65535

ulimit -n仍没有修改成功

第三次尝试

难道是我打开的方式不对?经过一番搜索,据说要重启一下,于是我怀着忐忑的心情重启了一下,,,,
然而并没有卵用。。。

解决方案

无奈继续在网上搜索,终于找到解决方法了,而且这确实是一个bug
/etc/systemd/user.conf/etc/systemd/system.conf 中修改DefaultLimitNOFILE=65535,然后最后重启就可以了!