小龍蝦的心臟長(zhǎng)在哪里 小龍蝦的心臟長(zhǎng)在什么位置
2022-12-03
更新時(shí)間:2022-11-27 09:02:29作者:佚名
在安裝Oracle Grid Infrastructure檢查約束時(shí)遇到一個(gè)錯(cuò)誤,大體是說(shuō)當(dāng)前可打開的文件描述符的最大數(shù)為1024,而要求是65536。
于是在gird用戶下執(zhí)行ulimit -a,顯示可打開的最大文件數(shù)為1024,這是默認(rèn)值;執(zhí)行ulimit -n 65536不允許修改,轉(zhuǎn)到root下面執(zhí)行ulimit -n 65536,執(zhí)行ulimit -a 顯示為65536,在grid用戶下執(zhí)行依然為1024。當(dāng)時(shí)想到用sudo的方式執(zhí)行,對(duì)gird用戶賦予所有權(quán)限,執(zhí)行ulimit -n 65536依然報(bào)錯(cuò)。
后來(lái)想起在配置/etc/profile文件里,對(duì)oracle有ulimit -n 65536的命令,如下:
if [ $USER = "oracle" ]; then
if [ $SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
umask 022
fi
添加grid用戶后,source /etc/profile
if [ $USER = "oracle" ] || [ $USER = "grid" ] ; then
if [ $SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
umask 022
fi
在grid執(zhí)行ulimit -a依然為1024,后來(lái)檢查安裝步驟發(fā)現(xiàn)忘了在/etc/security/limits中添加grid用戶了,添加下面即可:
grid soft nproc 2047
grid hard nproc 16384
grid soft nofile 1024
grid hard nofile 65536
看來(lái)是作用域的問(wèn)題,增大文件描述符。