oracle使用sqlplus工具,很不方便,现使用rlwrap工具实现上下键切换历史命令,方便实用。 一、安装所需要包yum install ncurses-devel -yyum instal
oracle使用sqlplus工具,很不方便,现使用rlwrap工具实现上下键切换历史命令,方便实用。
一、安装所需要包
yum install ncurses-devel -y
yum install readline-devel -y
二、解压及安装
tar -zxvf rlwrap-0.42.tar.gz
cd rlwrap-0.42/
./configure
如果出现以下提示,则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
三、编辑用户环境变量
切换至oracle用户,在.bash_profile文件添加以下内容
su - oracle
vim ~/.bash_profile
alias sqlplus='rlwrap sqlplus';
alias rman='rlwrap rman';
使配置生效
source ~/.bash_profile
连接数据库:sqlplus "/as sysdba"
即可使用
切换至grid用户,在.bash_profile文件添加以下内容
su - grid
vim ~/.bash_profile
alias asmcmd='rlwrap asmcmd';
--结束END--
本文标题: 编译安装rlwrap-0.42工具
本文链接: https://lsjlt.com/news/41599.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0