LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1068|回复: 6

Install Oracle 10g on OpenSuSE 10RC

[复制链接]
发表于 2005-9-17 23:27:04 | 显示全部楼层 |阅读模式
Install Oracle 10g on SuSE 10

http://www.dbanotes.net/archives/2005/09/install_oracle.html

论坛上有兄弟问起,测试了一下.并不是很复杂
发表于 2005-9-18 10:16:55 | 显示全部楼层
安装很容易的--10gr2你用dbca建库了吗?我总是出错。
回复 支持 反对

使用道具 举报

发表于 2005-9-18 21:18:38 | 显示全部楼层
thanks fenng very much,it is very useful to newbie like me.

can you tell me why not set the limits?thanks a lot.

Add the following lines in the /etc/security/limits.conf file:
oracle           soft    nproc   2047
oracle           hard    nproc   16384
oracle           soft    nofile  1024
oracle           hard    nofile  65536


Add the following line to the /etc/pam.d/login file, if it does not already exist:
session    required     /lib/security/pam_limits.so


Depending on the oracle user's default shell, make the following changes to the default shell startup file:
For the Bourne, Bash, or Korn shell, add the following lines in the /etc/profile file (or the /etc/profile.local file on SUSE systems):
if [ $USER = "oracle" ]; then
        if [ $SHELL = "/bin/ksh" ]; then
              ulimit -p 16384
              ulimit -n 65536
        else
              ulimit -u 16384 -n 65536
        fi
fi


For the C shell, add the following lines in the /etc/csh.login file (or the /etc/csh.login.local file on SUSE systems):
if ( $USER == "oracle" ) then
        limit maxproc 16384
        limit descriptors 65536
endif
回复 支持 反对

使用道具 举报

发表于 2005-11-15 16:47:00 | 显示全部楼层
做好了,很容易的了。在suse 10.0下装oracle真是太容易太爽了。看来跑Oracle suse还是我首选平台。
回复 支持 反对

使用道具 举报

发表于 2005-11-28 01:45:58 | 显示全部楼层
我的运行./runInstaller
出现的安装界面中文不能正确显示
请教何解
回复 支持 反对

使用道具 举报

发表于 2005-11-28 01:48:55 | 显示全部楼层
try changing the UTF8 settings in your locale
回复 支持 反对

使用道具 举报

发表于 2005-11-28 01:54:55 | 显示全部楼层
本地是utf8,自己装的jdk1.5也能在awt显示中文,oracle 安装用自己的jre,不知道怎么办了
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表