Redhat enterprise linux下安裝rlwrap工具

dawn009發表於2014-08-22

rlwrap 可以用來支援oracle下sqlplus歷史命令的回撥功能,提高效率。

 

1、  下載

從下載,然後上傳到

/tmp 目錄下。

 

2、  解壓縮安裝

[root@localhosttmp]# tar -zxvf rlwrap-0.37.tar.gz

 

[root@localhosttmp]# cd rlwrap-0.37

[root@localhostrlwrap-0.37]# ls

[root@localhostrlwrap-0.37]# ./configure

[root@localhostrlwrap-0.37]#make

[root@localhostrlwrap-0.37]#make install

 

 

3、  驗證安裝結果

[root@localhost rlwrap-0.37]#su – oracle

[oracle@localhost ~]$ rlwrap

Usage: rlwrap [options] command ...

Options:

  -a[password:]              --always-readline[=password:]

  -A                         --ansi-colour-aware

[oracle@localhost ~]$ rlwrap sqlplus / as sysdba;

SQL*Plus: Release 10.1.0.3.0 -Production on ??Υ 9? 3 12:49:42 2010

Copyright (c) 1982, 2004, Oracle.  All rights reserved.

Connected to:

Oracle Database 10g EnterpriseEdition Release 10.1.0.3.0 - Production

With the Partitioning, OLAP and DataMining options

 

SQL> select status fromv$instance;

STATUS

------------

OPEN

 

4、安裝報錯

    rlwrap: error while loadingshared libraries: libreadline.so.5: cannot open shared object file: No suchfile or directory

   解決辦法:

      在oracle下的.bash_profile中$PATH路徑中增加/usr/local/bin路徑

    PATH=/usr/local/bin:$PATH;export PATH

 

5、 編輯oracle使用者下的.bash_profile

增加

alias sqlplus=’rlwrap sqlplus’

alias rman=’rlwrap rman’


-----&gt>轉載於:http://www.cnblogs.com/lukeqinll/archive/2010/09/14/1826262.html

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29119536/viewspace-1255932/,如需轉載,請註明出處,否則將追究法律責任。

相關文章