关于oracle命令行上下左右键无法使用解决办法

前端之家收集整理的这篇文章主要介绍了关于oracle命令行上下左右键无法使用解决办法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

使用rlwrap工具解决


1.下载安装readline和rlwrap


//安装readline


[root@oracle opt]#wget ftp://ftp.gnu.org/gnu/readline/readline-6.2.tar.gz

[root@oracle opt]# tar xvf readline-6.2.tar.gz

[root@oracle opt]# cd readline-6.2

[root@oracle readline-6.2]# ./configure && make && make install

//安装rlwrap


[root@oracle opt]# wget http://utopia.knoware.nl/~hlub/rlwrap/rlwrap-0.37.tar.gz

[root@oracle opt]# tar xvf rlwrap-0.37.tar.gz

[root@oracle opt]# cd rlwrap-0.37

[root@oracle rlwrap-0.37]# ./configure && make && make install

2.更改环境变量增加别名


[root@oracle rlwrap-0.37]# vim /home/oracle/.bash_profile

alias sqlplus='rlwrap sqlplus' -----增加这个别名

重新使用oracle用户登录即可,

猜你在找的Oracle相关文章