ulimit -n 查询结果是 1024 而非 1024000
HolosLee opened this issue · 4 comments
HolosLee commented
按照优化教程完成,利用 ulimit -n 查询返回结果是 1024 而非 1024000.
HolosLee commented
忘了 reboot 服务器,囧
iTofu commented
@HolosLee
你好,同样的问题,reboot 之后还是 1024 肿么办?
/etc/profile:
if [ "${PS1-}" ]; then
if [ "${BASH-}" ] && [ "$BASH" != "/bin/sh" ]; then
# The file bash.bashrc already sets the default PS1.
# PS1='\h:\w\$ '
if [ -f /etc/bash.bashrc ]; then
. /etc/bash.bashrc
fi
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi
if [ -d /etc/profile.d ]; then
for i in /etc/profile.d/*.sh; do
if [ -r $i ]; then
. $i
fi
done
unset i
fi
ulimit -SHn 1024000
HolosLee commented
这个我也不清楚,过了很久忘了之前是怎么做的,我只记得重启下再查询就可以了。
iTofu commented
好吧囧