标签: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
3、Ora_Q3_bash: sqlplus: command not found 解决方法
标签:bash: sqlplus: command not found
原文地址:http://peenboo.blog.51cto.com/2865551/1790114