Home  >  Article  >  Database  >  远程SSH连接Linux配置Oracle的sqlplus环境变量

远程SSH连接Linux配置Oracle的sqlplus环境变量

WBOY
WBOYOriginal
2016-06-07 17:11:581189browse

在SSH Secure Shell中执行sqlplus命令如果找不到,那即使没有配置oracle的环境变量。配置方法如下:找到当前用户root目录下的.ba

在SSH Secure Shell中执行sqlplus命令如果找不到,,那即使没有配置Oracle的环境变量。

配置方法如下:

找到当前用户root目录下的.bash_profile文件(注:这种配置环境变量方式只对当前用户有效,可用cd ~ 命令进入root目录)

设置oracle的环境变量:如下

PATH=$PATH:$HOME/bin:$ORACLE_BASE:$ORACLE_HOME

export PATH

export ORACLE_BASE=/app/oracle

export ORACLE_HOME=$ORACLE_BASE/product/10.2/db_1

export PATH=$ORACLE_HOME/bin:$PATH

保存退出。

执行source .bash_profile


再运行:sqlplus user/password@SERVICE_NAME 将连接到指定的数据库。

如果想dba登录,那么:sys as sysdba 再输入密码即可

就可以了

Statement:
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