2024-09-29 03:35:11
1、连接服务器,查看服务器的ulimit大小。#ulimit -n。
2、临时设置。#ulimit -n 65536再次查看:#ulimit -n。
3、临时设置,关闭窗口再次打开就又恢复到1024了。
4、设置永久 生效。可以修改
5、保存退出。然后加载配置文件。#source /etc/profile再次查看ulimit#ulimit -n。
2024-09-29 05:16:09
Linux系统下/etc/profile这个文件是每个用户登录时都会运行的环境变量设置,该文件初始的脚本信息是相同的,可以自己新建一个该文件,然后写入下面代码:
如果是删除的admin用户下该文件
su admin #切换到admin用户
vim /etc/profile #新建一个配置文件
#写入一下脚本即可
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
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
# The default umask is now handled by pam_umask.
# See pam_umask(8) and /etc/login.defs.
if [ -d /etc/profile.d ]; then
for i in /etc/profile.d/*.sh; do
if [ -r $i ]; then
. $i
fi
done
unset i
fi
#然后!wq 保存文件即可。
2024-09-29 03:37:56
2024-09-29 01:28:48