etc中profile配置文件有误
重新覆盖下
cat >>/etc/profile<<EOF
if [ $USER = "oracle" ]; thenif [ $SHELL = "/bin/bash" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
fi
EOF
解决
本文介绍了一种解决/etc/profile配置文件出现错误的方法。通过重新覆盖配置文件的方式,确保了特定用户的资源限制设置正确,适用于使用oracle用户的场景。
etc中profile配置文件有误
重新覆盖下
cat >>/etc/profile<<EOF
if [ $USER = "oracle" ]; thenEOF
解决
1200
2万+

被折叠的 条评论
为什么被折叠?
