3Ora_Q3_bash: sqlplus: command not found 解决方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3Ora_Q3_bash: sqlplus: command not found 解决方法相关的知识,希望对你有一定的参考价值。
bash: sqlplus: command not found 解决方法
环境变量已经配好,但是仍报错:
# vi .bash_profile
# .bash_profile
# Get the aliasesand functions
if [ -f ~/.bashrc ];then
. ~/.bashrc
fi
# User specificenvironment and startup programs
PATH=$PATH:$HOME/bin
#AddORACLE_SID ,ORACLE_BASE,ORACLE_HOME AND PATH
exportPATH
unsetUSERNAME
exportEDITOR = vi
exportORACLE_SID = orcl
export ORACLE_BASE = /u01/app/oracle
exportORACLE_HOME = $ORACLE_BASE/product/11.2.0/dbhome_1/
export PATH = $PATH:/u01/app/oracle/product/11.2.0/dbhome_1/bin
umask 022
【解决方法】
# su -root
# ln -s /u01/app/oracle/product/11.2.0/dbhome_1/bin/sqlplus /usr/bin
# su - oracle
$sqlplus/nolog
SQL>conn / as sysdba
Connected to an idleinstance.
SQL>startup
ORACLEinstance started.
……
Database mounted.
Databaseopened.
本文出自 “奋斗不止” 博客,请务必保留此出处http://peenboo.blog.51cto.com/2865551/1790114
以上是关于3Ora_Q3_bash: sqlplus: command not found 解决方法的主要内容,如果未能解决你的问题,请参考以下文章