博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
oracle sqlplus 回退键以及上下键
阅读量:4915 次
发布时间:2019-06-11

本文共 3866 字,大约阅读时间需要 12 分钟。

Linux中安装完Oracle后,默认的 sqlplus 上下键是不能用的,安装了 rlwrap 之后就能通过上下键翻回历史命令了

  1. 下载地址

  2. 安装步骤

  • 安装readline 及 依赖
[root@ogg1 rlwrap-0.43]# yum install readline*已加载插件:fastestmirror, refresh-packagekit, security设置安装进程Loading mirror speeds from cached hostfile包 readline-6.0-4.el6.x86_64 已安装并且是最新版本解决依赖关系--> 执行事务检查---> Package readline-devel.x86_64 0:6.0-4.el6 will be 安装---> Package readline-static.x86_64 0:6.0-4.el6 will be 安装--> 完成依赖关系计算依赖关系解决=============================================================================================================================================================== 软件包                                      架构                               版本                                    仓库                              大小===============================================================================================================================================================正在安装: readline-devel                              x86_64                             6.0-4.el6                               base                             134 k readline-static                             x86_64                             6.0-4.el6                               base                             113 k事务概要===============================================================================================================================================================Install       2 Package(s)总下载量:248 kInstalled size: 790 k确定吗?[y/N]:y下载软件包:(1/2): readline-devel-6.0-4.el6.x86_64.rpm                                                                                              | 134 kB     00:00     (2/2): readline-static-6.0-4.el6.x86_64.rpm                                                                                             | 113 kB     00:00     ---------------------------------------------------------------------------------------------------------------------------------------------------------------总计                                                                                                                           231 kB/s | 248 kB     00:01     运行 rpm_check_debug 执行事务测试事务测试成功执行事务  正在安装   : readline-devel-6.0-4.el6.x86_64                                                                                                             1/2   正在安装   : readline-static-6.0-4.el6.x86_64                                                                                                            2/2   Verifying  : readline-static-6.0-4.el6.x86_64                                                                                                            1/2   Verifying  : readline-devel-6.0-4.el6.x86_64                                                                                                             2/2 已安装:  readline-devel.x86_64 0:6.0-4.el6                                             readline-static.x86_64 0:6.0-4.el6                                            完毕!
  • 上传、解压、编译、安装rlwrap
[root@ogg1 ~]# tar -zxvf rlwrap-0.43.tar.gz[root@ogg1 ~]# cd rlwrap-0.43[root@ogg1 rlwrap-0.43]# ./configure && make && make install
  • 配置shell
[root@ogg1 rlwrap-0.43]# su - oracle [oracle@ogg1 ~]$ vim .bash_profile

最后增加以下配置,使oracle相关命令都支持回退和上下键

alias sqlplus='rlwrap sqlplus'alias rman='rlwrap rman'alias lsnrctl='rlwrap lsnrctl'
  1. 其它问题
  • checking build system type...
    Invalid configuration x86_64-unknown-linux-': machinex86_64-unknown-linux'not recognized
    configure: error: /bin/sh tools/config.sub x86_64-unknown-linux- failed
    解决:需要安装GCC,执行命令:yum install -y gcc
  • You need the GNU readline library(ftp://ftp.gnu.org/gnu/readline/) to build this program!
    解决:需要安装libtermcap-devel,执行命令:yum install -y libtermcap-devel 实际上RLwrap的安装需要两个依赖包:readline和libtermcap-devel readline一般都会集成在Linux里,所以这里直接安装libtermcap-devel
  • bash: make: command not found
    解决:需要安装make,执行命令:yum install -y make*

转载于:https://www.cnblogs.com/lzxianren/p/oralce-sqlplus-backspace.html

你可能感兴趣的文章
php禁止浏览器使用缓存页面的方法
查看>>
django的模型类管理器-----------数据库操作的封装
查看>>
java 回调
查看>>
CF1100E Andrew and Taxi 二分答案+拓扑排序
查看>>
子弹朝向问题的解决,移动方法的编写
查看>>
$("#id a") - $("#id .c a") = ?
查看>>
题目1034:寻找大富翁---用了sort()函数,注意头文件;
查看>>
Windows下Wamp装不上Memcache扩展
查看>>
js中数组的map()方法
查看>>
wpa破解学习实践
查看>>
USACO 2008 FEB Eating Together
查看>>
5月13 jquery的一些应用
查看>>
mysql命令行如何得到表结构
查看>>
有效的更改IE、Firefox、Chrome浏览器缓存位置的方法
查看>>
SQL*Plus 系统变量之7 - BLO[CKTERMINATOR]
查看>>
MATLAB 统计数据并画出统计直方图
查看>>
TTTTTTTTTTTTTTTTT CF #182 div1 B floyd
查看>>
adbi命令【转】
查看>>
jQuery----选择器1
查看>>
SpringPython之AOP
查看>>