上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 43 下一页
摘要: #! /bin/bashparameter=ind_argind_arg=Helloind_func(){ echo "$1"}ind_fun(){ echo "test!!!"}ind_func "$1"ind_func "$parameter"ind_func "${!parameter}"in 阅读全文
posted @ 2021-08-25 11:15 beawh 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 转自 https://blog.csdn.net/qq_35080214/article/details/111177787 一、PodPod 是可以在 Kubernetes 中创建和管理的、最小的可部署的计算单元。Pod中包含了一个或多个容器,还包括了存储、网络等各个容器共享的资源。Pod支持多种 阅读全文
posted @ 2021-08-23 17:19 beawh 阅读(352) 评论(0) 推荐(0) 编辑
摘要: 1、在mysql中数据库information_schema中查询以下三张表: select * from innodb_trx; ## 当前运行的所有事务 select * from innodb_locks; ## 当前出现的锁 select * from innodb_lock_waits; 阅读全文
posted @ 2021-08-19 10:31 beawh 阅读(419) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/f-ck-need-u/p/9010872.html 阅读全文
posted @ 2021-08-12 17:15 beawh 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 假设在win(192.168.0.101)上安装了xmanager,想接收来自linux(192.168.100.16)的图形界面。1.在win端打开Xmanager - Passive 2.在linux上设置DISPLAY环境变量 export DISPLAY=192.168.0.101:0.0 阅读全文
posted @ 2021-08-12 16:59 beawh 阅读(285) 评论(0) 推荐(0) 编辑
摘要: centos6下修改hostname [root@centos6 ~]$ hostname # 查看当前的hostnmae centos6.magedu.com [root@centos6 ~]$ vim /etc/sysconfig/network # 编辑network文件修改hostname行 阅读全文
posted @ 2021-07-28 17:22 beawh 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 检查的Mysql是否支持partition (root@localhost)[(none)]SHOW PLUGINS;+ + + + + +| Name | Status | Type | Library | License |+ + + + + +| binlog | ACTIVE | STORA 阅读全文
posted @ 2021-07-28 17:16 beawh 阅读(35) 评论(0) 推荐(0) 编辑
摘要: Oracle于7月20日(北京时间7月21凌晨)发布了2021年第三季度旗下产品的漏洞公告。 https://support.oracle.com/epmos/faces/DocumentDisplay?_afrLoop=246794803890660&id=2773670.1&_afrWindow 阅读全文
posted @ 2021-07-21 09:31 beawh 阅读(105) 评论(0) 推荐(0) 编辑
摘要: #!/bin/shdatetime=`date +%Y%m%d%H%M%S` user=`whoami`logDir=/app/logs/sg_qyjx domainBase=/app/weblogic/domains domainName=qyjx_cluster adminip=192.168. 阅读全文
posted @ 2021-07-20 17:31 beawh 阅读(384) 评论(0) 推荐(0) 编辑
摘要: ansible的yum模块,类似于在各自服务器上进行yum state 状态:latest ,present 表示安装 新增; absent 表示卸载 删除; [root@localhost ~]# ansible webservers -m yum -a "name=vim state=lates 阅读全文
posted @ 2021-07-16 15:10 beawh 阅读(36) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 43 下一页