博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在安装完成oracle的时候,需要su - oracle,但有时候出现ulimit pize...
阅读量:6840 次
发布时间:2019-06-26

本文共 264 字,大约阅读时间需要 1 分钟。

在安装完成oracle的时候,需要su - oracle,但有时候出现ulimit pize。。。,下面旧能解决

gedit /etc/profile 是增加JDK配置的文件,在增加JDK配置后紧接着增加如下内容

if [ $USER = "oracle" ];then
if [ $SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
fi

 

当然还得用source /etc/profile来生效

 

转载地址:http://atwul.baihongyu.com/

你可能感兴趣的文章
Cesium 创建Geometry
查看>>
OpenGL的几何变换4之内观察全景图
查看>>
@RenderBody、@RenderSection、@RenderPage、Html.RenderPartial、Html.RenderAction的作用和区别...
查看>>
OCIEnvCreate failed with return code -1 but error message text was not available with ODP.net
查看>>
mysql日常错误信息解决方法:InnoDB: and force InnoDB to continue crash recovery here.
查看>>
jQuery中的动画
查看>>
JAVA入门到精通-第71讲-学生管理系统3-增删改查
查看>>
ios appIcon配置
查看>>
spring boot的热加载(hotswap)
查看>>
iis重启的几种方法
查看>>
HDU 2196 Computer 树形DP经典题
查看>>
HDU 3466 01背包变形
查看>>
python - paramiko模块 修改logging提示为静默
查看>>
面试题目(1)
查看>>
描述一下Spring框架的作用和优点?
查看>>
二十五:设计模式的总结
查看>>
【原创翻译】The Case for the Reduced Instruction Set Computer
查看>>
使用asp.net MVC4中的Bundle遇到的问题及解决办法
查看>>
js 全选,反选
查看>>
Android与iOS:谁更适合HTML 5?
查看>>