上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 43 下一页
摘要: du -h --max-depth=1|sort -rn 空间占用按照大小排序 通过输入流快速清空大文件。>server.log 查出文件删除的进程pid ,进程释放掉,空间也就会释放。lsof|grep deletekill -9 pid 阅读全文
posted @ 2021-09-17 09:36 beawh 阅读(26) 评论(0) 推荐(0) 编辑
摘要: [root@aa ~]# netstat -nat |awk -F ' ' '{print $6}'establishedForeignLISTENLISTENLISTENLISTENTIME_WAITTIME_WAITESTABLISHEDESTABLISHEDLISTENLISTENLISTEN 阅读全文
posted @ 2021-09-17 09:26 beawh 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.jianshu.com/p/093d712c777d 1. 扫描主机端口状态 #!/bin/bash HOST=$1 PORT="22 80 8080 3306" for PORT in $PORT; do if echo &>/dev/null > /dev/tcp/ 阅读全文
posted @ 2021-09-14 15:01 beawh 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 1.下载软件包 [root@pxc2 opt]# wget https://www.rarlab.com/rar/rarlinux-x64-5.6.0.tar.gz 2.解压 [root@pxc2 opt]# tar -zxvf rarlinux-x64-5.6.0.tar.gz 3.安装 [roo 阅读全文
posted @ 2021-09-10 09:01 beawh 阅读(134) 评论(0) 推荐(0) 编辑
摘要: [oracle@pxc2 ~]$ sqlplus / as sysdba SQL*Plus: Release 11.2.0.4.0 Production on Wed Sep 8 23:38:28 2021 Copyright (c) 1982, 2013, Oracle. All rights r 阅读全文
posted @ 2021-09-09 14:52 beawh 阅读(872) 评论(0) 推荐(0) 编辑
摘要: 本地设备与主机或者服务器设备冲突引起的。具体解决办法:方法1.右键右下角Xmanager图标 属性 设备 鼠标设置 3按钮仿真(同时单击向左按钮和向右按钮)选项取消勾选。方法2.打开Xconfig Default Profile 设备 鼠标设置 3按钮仿真(同时单击向左按钮和向右按钮)选项取消勾选。 阅读全文
posted @ 2021-09-09 11:03 beawh 阅读(163) 评论(0) 推荐(0) 编辑
摘要: [weblogic@localhost ~]$ java -jar fmw_12.2.1.3.0_wls_quick.jar 启动程序日志文件为/tmp/OraInstall2021-04-15_02-37-24PM/launcher2021-04-15_02-37-24PM.log。正在提取安装程 阅读全文
posted @ 2021-08-31 15:20 beawh 阅读(198) 评论(0) 推荐(0) 编辑
摘要: weblogic启动之后经常报这个警告,导致日志文件增加非常大。 E-WL: WebLogic Logs Warning Message: " " [ID 1423761.1]Solution亲测 解决访问:新增加个log的filter,即可解决.搜了一下metalink,有现成的说明:E-WL: 阅读全文
posted @ 2021-08-30 17:26 beawh 阅读(2432) 评论(0) 推荐(0) 编辑
摘要: [root@pxc3 ~]# vi function8.sh#!/bin/bashtext="global variable"tj=91850use_local_var_fun(){ local text="local variable" echo "In function use_local_va 阅读全文
posted @ 2021-08-25 15:48 beawh 阅读(223) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bashshow_week(){ for day in Monday Tuesday Wednesday Thursday Friday Saturday Sunday do echo "$day " done} show_number(){ for (( i = 1; i <= 7; 阅读全文
posted @ 2021-08-25 14:43 beawh 阅读(32) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 43 下一页