查看ORACLE AS 端口脚本

简介: 学习笔记 自己写了一个SHELL脚本来看ORACLE AS 端口 echo "start"echo "report will at /tmp/report next time will delete it"rm -rf /tmp/reportcut -d :...

学习笔记

自己写了一个SHELL脚本来看ORACLE AS 端口

echo "start"
echo "report will at /tmp/report next time will delete it"
rm -rf /tmp/report
cut -d : -f 1 /etc/passwd>/tmp/user
sed -n '/ora/'p /tmp/user>/tmp/orauser
while read NAME
do
 if [ -n $NAME ]
 then
 more home/oracle/OraHome_AS/install/portlist.ini|grep =|grep -v ^H>>/tmp/port
 echo $NAME>>/tmp/test
 more /tmp/port
 more /tmp/test
 sed 's/^/'$(cat /tmp/test)' /' /tmp/port>>/tmp/report
 rm -rf /tmp/port
 rm -rf /tmp/test
 fi
done/orauser
rm -rf /tmp/user
rm -rf /tmp/orauser
echo "end"

查看中间件端口而已

相关文章
|
存储 SQL Oracle
Oracle数据库批量删除表、视图、序列、存储过程、函数脚本
Oracle数据库批量删除表、视图、序列、存储过程、函数脚本
136 0
|
4月前
|
机器学习/深度学习 Oracle 关系型数据库
Oracle 19c单机一键安装脚本分享
Oracle 19c单机一键安装脚本分享
229 2
|
5月前
|
Oracle 安全 关系型数据库
|
5月前
|
存储 Oracle 关系型数据库
|
5月前
|
存储 Oracle 关系型数据库
关系型数据库Oracle运行RMAN脚本
【7月更文挑战第23天】
54 4
|
4月前
|
Oracle 关系型数据库 数据库
Oracle数据库备份脚本分享-Python
Oracle数据库备份脚本分享-Python
111 0
|
4月前
|
Oracle 安全 关系型数据库
Oracle安装部署再也不用头疼了,分享一个实用的一键部署脚本,建议收藏!
Oracle安装部署再也不用头疼了,分享一个实用的一键部署脚本,建议收藏!
171 0
|
5月前
|
监控 Oracle 算法
|
5月前
|
Oracle 关系型数据库 数据库
关系型数据库Oracle编写RMAN脚本
【7月更文挑战第23天】
44 2
|
5月前
|
Oracle 关系型数据库 数据库
关系型数据库Oracle执行RMAN脚本
【7月更文挑战第22天】
87 2

推荐镜像

更多