溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

編譯安裝rlwrap-0.42工具

發(fā)布時間:2020-07-14 22:01:24 來源:網(wǎng)絡 閱讀:1812 作者:chunjia 欄目:關系型數(shù)據(jù)庫



Oracle使用sqlplus工具,很不方便,現(xiàn)使用rlwrap工具實現(xiàn)上下鍵切換歷史命令,方便實用。

 

一、安裝所需要包

yum install ncurses-devel -y

yum install readline-devel -y

 

二、解壓及安裝

tar -zxvf rlwrap-0.42.tar.gz 

cd rlwrap-0.42/

./configure


如果出現(xiàn)以下提示,則configure成功:

Now do:

    make (or gmake)  to build rlwrap

    make check       for instructions how to test it

    make install     to install it


make

make check

make install 

 

# which rlwrap
/usr/local/bin/rlwrap

三、編輯用戶環(huán)境變量

切換至oracle用戶,在.bash_profile文件添加以下內(nèi)容

su - oracle

vim ~/.bash_profile 

alias sqlplus='rlwrap sqlplus';

alias rman='rlwrap rman';

 

使配置生效

source ~/.bash_profile

 


連接數(shù)據(jù)庫:sqlplus "/as sysdba"

即可使用



切換至grid用戶,在.bash_profile文件添加以下內(nèi)容

su - grid

vim ~/.bash_profile 

alias asmcmd='rlwrap asmcmd';











向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI