上一页 1 2 3 4 5 6 7 8 9 ··· 31 下一页
摘要: 1、下载软件 wget http://li.nux.ro/download/nux/misc/el7/x86_64/rinetd-0.62-9.el7.nux.x86_64.rpm 2、安装软件 yum -y install rinetd-0.62-9.el7.nux.x86_64.rpm 3、配置 阅读全文
posted @ 2022-12-15 14:26 苍茫宇宙 阅读(1054) 评论(0) 推荐(0) 编辑
摘要: 1、安装master docker swarm init --advertise-addr 10.98.10.186 Swarm initialized: current node (qemrm3oqc537jpcsp0vqb60s6) is now a manager. To add a work 阅读全文
posted @ 2022-12-14 15:29 苍茫宇宙 阅读(180) 评论(0) 推荐(0) 编辑
摘要: python版本3.9.4 1、生成csv的方法 #make_csv.py# import csv def produce_csv(): # 1. 创建文件对象 f = open('temp.csv', 'w', encoding='utf-8', newline='') # 2. 基于文件对象构建 阅读全文
posted @ 2022-11-21 11:40 苍茫宇宙 阅读(236) 评论(0) 推荐(0) 编辑
摘要: oracle shrink space收缩表 segment shrink分为两个阶段: 1)、数据重组(compact):通过一系列insert、delete操作,将数据尽量排列在段的前面。在这个过程中需要在表上加RX锁,即只在需要移动的行上加锁。由于涉及到rowid的改变,需要enable ro 阅读全文
posted @ 2022-11-11 16:18 苍茫宇宙 阅读(3096) 评论(0) 推荐(1) 编辑
摘要: sed -i 's/^M//g' a.csv 注意:这里的“^M”要使用“CTRL-V CTRL-M”生成,而不是直接键入“^M”。 实验: [root@localhost tmp]# cat -A a.csv 1^M$ 2^M$ [root@localhost tmp]# sed -i 's/^M 阅读全文
posted @ 2022-10-31 14:55 苍茫宇宙 阅读(668) 评论(0) 推荐(0) 编辑
摘要: 需求:通过网站url方式直接执行服务器的shell命令 实现: 1、安装依赖 pip3 install falsk 2、python脚本 [root@localhost tmp]# more falsh-index.py from flask import Flask,render_template 阅读全文
posted @ 2022-10-21 13:58 苍茫宇宙 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 1、该shell判断 第一次失败告警,接口恢复发送一次通知 参数:一个参数接口返回结果0 表示成功 1表示失败 脚本详情 [root@localhost bd]# more bd-new.sh #!/bin/bash w=$(cd $(dirname $0);pwd) befo=$(cat $w/b 阅读全文
posted @ 2022-10-11 11:37 苍茫宇宙 阅读(51) 评论(0) 推荐(0) 编辑
摘要: #查看服务器上总共有多少个asmdisk [grid@rkdb1]$ asmcmd lsdsk --discovery Path /dev/oracleasm/disks/OCPDATA1 /dev/oracleasm/disks/OCPDATA2 #查看已经在asmdiskgroup中的asmdi 阅读全文
posted @ 2022-09-13 16:19 苍茫宇宙 阅读(398) 评论(0) 推荐(0) 编辑
摘要: 1、错误表现 Errot: Unable to access jarfile /opt/run-java/deployments/chiano.jar 2、原因:容器的基础镜像对jar的权限有要求 3、处理方法:在打包之前将jar包权限放到 chmod 777 *.jar 阅读全文
posted @ 2022-09-09 21:02 苍茫宇宙 阅读(5657) 评论(0) 推荐(0) 编辑
摘要: 1、查看归档信息 show parameter recovery_file_dest #查看归档目录 show parameter recovery_file_dest_size #查看归档可以存储的大小 2、查看每天的归档文件数量 select to_char(completion_time,'Y 阅读全文
posted @ 2022-09-01 15:20 苍茫宇宙 阅读(596) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 31 下一页