Home > Database > Mysql Tutorial > Linux下安装Oracle 10g的一些配置文件

Linux下安装Oracle 10g的一些配置文件

WBOY
Release: 2016-06-07 16:57:33
Original
983 people have browsed it

基本的安装过程参考网上的一些安装说明即可。把安装过程中的对Linux的一些配置说明一下,基本就是对oracle用户目录下的.bash_pro

基本的安装过程参考网上的一些安装说明即可。

把安装过程中的对Linux的一些配置说明一下,基本就是对Oracle用户目录下的.bash_profile进行配置。把我在RedHat EL4下的oracle用户的.bash_profile配置文件张贴如下:

[oracle@s002 ~]$ more .bash_profile
# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi

# User specific environment and startup programs
ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE
ORACLE_HOME=$ORACLE_BASE/product/10.1.0/db_11; export ORACLE_HOME
ORACLE_SID=demol; export ORACLE_SID
#NLS_LANG="SIMPLIFIED CHINESE_CHINA.ZHS32GB18030"; export NLS_LANG
export LC_CTYPE=en_US.UTF-8
export LD_ASSUME_KERNEL=2.6.9

export ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib:/usr/local/lib:$ORACLE_HOM
E/network/lib
export CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib
export PATH=$PATH:/bin:/usr/bin:/usr/sbin:/etc:/opt/bin:/usr/ccs/bin:/usr/openwi
n/bin:/opt/local/GNU/bin
export PATH=$PATH:/opt/local/bin:/opt/NSCPnav/bin:$ORACLE_HOME/bin
export PATH=$PATH:/usr/local/samba/bin:/usr/ucb
export PATH=$PATH:/usr/local/jre/bin
alias cdora="cd $ORACLE_HOME"

PATH=$PATH:$HOME/bin

export PATH
unset USERNAME


这个设置并不是唯一的,用户必须要根据自己数据库系统的安装目录来进行修改,基本需要改动的可能就是ORACLE_BASE,ORACLE_HOME,这个要根据自己的实际情况来进行设置。

基本的oracle10安装说明呆会转过来,参考说明一步步安装即可。

安装已经在REDHAT EL4下测试通过。

linux

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template