摘要: ###Linux环境 top查到25812进程的CPU高 根据进程的PID找到 该进程中CPU使用率最高的线程号 26001 使用了72% ps -mp 25812 -o THREAD,tid,time |sort -n -k 2 按线程使用cpu排序 或 ps -mp 25812 -o THREA 阅读全文
posted @ 2019-04-23 14:32 Qtong 阅读(3108) 评论(0) 推荐(0)
摘要: 大量现代CPU在指令投机执行(一种常见性能优化措施)的具体实现上被发现存在普遍问题,该问题根据利用方法不同导致了三个不同的漏洞: 变种CVE-2017-5715 利用分支目标注入来触发投机执行,其依赖于高权限进程的代码中存在一系列特殊指令,且内存访问可导致对从未真正提交的指令(退休指令)分配CPU缓 阅读全文
posted @ 2019-02-18 17:28 Qtong 阅读(524) 评论(0) 推荐(0)
摘要: 数据盘没动 将E:\app 重命名为E:\app1 将原有的数据库重新安装一遍 目录与之前一致重建实例与之前名字一致 stop数据库 和监听 将 E:\app1\qtong\oradata\orcl\ 整个目录 将E:\app1\qtong\fast_recovery_area\orcl\下的CTL 阅读全文
posted @ 2019-01-28 13:10 Qtong 阅读(263) 评论(0) 推荐(0)
摘要: ##WAS 服务器双网卡 172.19.74.12 192.168.1.1 nginx -ihs-was (IHS与nginx 必须不同ip 相同端口) IHS的httpdconf中所有的带端口的地方均改为内网IP:PORT Listen 172.19.74.12:80 ServerName 172 阅读全文
posted @ 2019-01-27 18:05 Qtong 阅读(632) 评论(0) 推荐(0)
摘要: ##阻塞 use masterdeclare @spid int,@bl intDECLARE s_cur CURSOR FOR select 0 ,blockedfrom (select * from sysprocesses where blocked>0 ) a where not exist 阅读全文
posted @ 2019-01-25 18:51 Qtong 阅读(220) 评论(0) 推荐(0)
摘要: was中间件发邮件报错,tomcat中间件不报错 具体报错如下:was 19-1-16 15:52:12:820 GMT+08:00] 00001bc0 WSX509TrustMa E CWPKI0022E: SSL 握手故障:已从目标主机:端口“*:9355”发送主体集 DN 为“CN=*.163 阅读全文
posted @ 2019-01-17 16:17 Qtong 阅读(2629) 评论(0) 推荐(0)
摘要: select * from DBA_HIST_SYSMETRIC_SUMMARY; select sum(inserts) inserts, sum(UPDATES) UPDATES, sum(DELETES) DELETES from dba_tab_modifications where TAB 阅读全文
posted @ 2018-12-27 18:54 Qtong 阅读(263) 评论(0) 推荐(0)
摘要: [oracle@db ~]$ sqlplus / as sysdba SQL*Plus: Release 11.2.0.4.0 Production on Wed Dec 26 13:04:11 2018 Copyright (c) 1982, 2013, Oracle. All rights re 阅读全文
posted @ 2018-12-27 18:52 Qtong 阅读(696) 评论(0) 推荐(0)
摘要: 同事总结的 记录之(1).打开快照:在master数据库执行如下:ALTER DATABASE [dbname] SET ALLOW_SNAPSHOT_ISOLATION ON;ALTER DATABASE [dbname] SET READ_COMMITTED_SNAPSHOT ON;在nc数据库 阅读全文
posted @ 2018-12-27 18:49 Qtong 阅读(1956) 评论(0) 推荐(0)
摘要: 之前找驻云的人安装的ispecVPN yum install strongswan openvpn zip curl wgetrpm -ivh flexgw-2.2.0-1.el6.x86_64.rpm 云上环境正常 [root@iZ23mu8ecgiZ network-scripts]# stro 阅读全文
posted @ 2018-12-20 19:32 Qtong 阅读(0) 评论(0) 推荐(0)