摘要: Oracle白名单 [root@dbserver admin]# cd /u01/app/oracle/product/11.2.0/db_1/network/admin [root@dbserver admin]# pwd/u01/app/oracle/product/11.2.0/db_1/ne 阅读全文
posted @ 2022-07-24 21:44 花之旭 阅读(719) 评论(0) 推荐(0)
摘要: 漏洞原因:其实这个版本信息可以被获取,就是在ssh对应主机的时候,登录过程中会暴露SSH的信息。 解决方案:就是自定义Banner来代替系统默认的Banner,保证SSH信息不被泄露。 操作步骤: 1、[root@dbserver ~]# touch /etc/ssh/ssh_banner 2、[r 阅读全文
posted @ 2022-07-24 21:19 花之旭 阅读(1530) 评论(0) 推荐(0)
摘要: Vim配置文件Vim启动时,会根据配置文件/etc/vimrc来设置 Vim,因此我们可以通过此文件来定制适合自己的 VimVim分类系统Vim 配置文件/etc/vimrc 所有系统用户在启动Vim时,都会加载这个配置文件。默认目录位于/etc/.vimrc 用户Vim 配置文件~/.vimrc 阅读全文
posted @ 2022-07-19 21:54 花之旭 阅读(1352) 评论(0) 推荐(0)
摘要: 【1.查看系统版本】[root@web ~]# uname -aLinux web 3.10.0-1160.el7.x86_64 #1 SMP Mon Oct 19 16:18:59 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux[root@web ~]# [root 阅读全文
posted @ 2022-07-07 21:02 花之旭 阅读(2034) 评论(0) 推荐(0)
摘要: 查看python版本[root@server ~]# python --versionPython 2.7.5[root@server ~]# python -VPython 2.7.5[root@server ~]#[root@server ~]# pip -Vbash: pip: 未找到命令.. 阅读全文
posted @ 2022-07-06 11:39 花之旭 阅读(676) 评论(0) 推荐(0)
摘要: 关于使用netstat -lantup查看的SSHD 6010端口解释: 1.使用netstat -lantup查看当前系统开启的服务端口 tcp6 0 0 ::1:6010 :::* LISTEN 1663/sshd: root@pts 发现 [root@server ~]# netstat -l 阅读全文
posted @ 2022-07-06 11:28 花之旭 阅读(3498) 评论(0) 推荐(0)
摘要: Oracle 用户密码设置了带有“@”符号,正常登陆总是无法登陆,提示无法解析的连接字符串错误 解决办法:1:修改密码:修改密码使密码中不包括@符号;2:增加转义即可,在密码前后增加 \"示例如下: CMD中输入:C:\Users\Administrator> exp system/\"ABC@X1 阅读全文
posted @ 2022-07-01 11:04 花之旭 阅读(1690) 评论(0) 推荐(0)
摘要: 一、概述 1.数据库实际管理中,不同业务系统需要使用’不同的用户'进行管理维护和使用,这样做把业务数据和系统数据独立分开管理,利于数据库系统管理; 2.在数据库中创建业务系统用户时候,建议为用户创建指定的用户表空间,否则全部默认为user表空间存储,使得user表空间容易过大,不易管理、查询。 二、 阅读全文
posted @ 2022-05-08 15:00 花之旭 阅读(1858) 评论(0) 推荐(0)
摘要: CentOS查看系统安装时间信息: 方法1:[root@logserver ~]# ll /boot/|egrep -i "(grub|lost\+found)" 方法2:[root@logserver ~]# rpm -qi setuptool 方法3:[root@logserver ~]# rp 阅读全文
posted @ 2022-04-28 09:52 花之旭 阅读(2953) 评论(0) 推荐(0)
摘要: 告警日志 /u01/app/oracle/diag/rdbms/ordb/ORDB/trace/alert_ORDB.log 监听日志 /u01/app/oracle/diag/tnslsnr/dbserver/listener/trace/listener.log 重命名以上日志,重启数据库和监听 阅读全文
posted @ 2022-04-22 22:54 花之旭 阅读(148) 评论(0) 推荐(0)