摘要: 参考 https://kb.vmware.com/s/article/2109881?lang=zh_CN 操作 启动特定服务:service-control --start servicename 启动所有服务:service-control --start --all 停止特定服务:servic 阅读全文
posted @ 2021-08-16 10:32 bugbeta 阅读(319) 评论(0) 推荐(0) 编辑
摘要: 最后更新: 2021/8/10 分区键要求 every unique key on the table must use every column in the table's partitioning expression.This also includes the table's primar 阅读全文
posted @ 2021-08-10 09:05 bugbeta 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 最近更新日期:2020/11/6 异常问题 报错:ftp.retrbinary No such file or directory ftp.retrbinary("RETR%s"%filename,fp.write,CONST_BUFFER_SIZE) RETR与%s之间不能有空格。这问题好像是只出 阅读全文
posted @ 2020-11-06 16:43 bugbeta 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 进入用户 和 组管理添加 sysreadonly 用户:用户赋角色 阅读全文
posted @ 2019-12-11 18:57 bugbeta 阅读(1021) 评论(0) 推荐(0) 编辑
摘要: 创建表空间create tablespace TBS_DATA datafile '/u01/oradata/tbs_data01.dbf' size 16G autoextend off;create tablespace TBS_DATA_IDX datafile '/u01/oradata/tbs_data_idx01.dbf' size 8G autoextend off;创建用户crea... 阅读全文
posted @ 2019-12-09 13:11 bugbeta 阅读(346) 评论(0) 推荐(0) 编辑
摘要: [root@elk100 scripts]# vim es_clear.sh #!/bin/bashworkdir="/root/scripts"cfgdir=$workdir/confCLEAN_LOG_FILE="/root/scripts/logs/es_clean.log"datasave=10# 只打印不清理,用于清理前测试 0:不清理 1:清理clean_status=1es_user... 阅读全文
posted @ 2019-12-09 11:02 bugbeta 阅读(563) 评论(0) 推荐(0) 编辑
摘要: 相关视图 select * from v$log ;select * from v$logfile ; 操作命令 ALTER DATABASE ADD LOGFILE GROUP 4 ('/opt/oracle/oradata/qybwt/redo04.log') SIZE 200M; ALTER 阅读全文
posted @ 2019-11-04 18:00 bugbeta 阅读(486) 评论(0) 推荐(0) 编辑
摘要: [root@node1 dashboard]# cat dashboard-controller.yaml apiVersion: v1kind: ServiceAccountmetadata: labels: k8s-app: kubernetes-dashboard addonmanager.kubernetes.io/mode: Reconcile name: kuberne... 阅读全文
posted @ 2019-09-30 10:50 bugbeta 阅读(9682) 评论(0) 推荐(0) 编辑
摘要: #-*- coding: utf-8 -*- import time cur_year = time.localtime()[0] cur_month = time.localtime()[1] if cur_month < 10: cur_month = '0'+str(cur_month) else: cur_month = str(cur_month) cur_month_1st= "%s- 阅读全文
posted @ 2019-09-16 16:08 bugbeta 阅读(5568) 评论(0) 推荐(0) 编辑
摘要: adb工具下载安装 https://dl.google.com/android/repository/platform-tools-latest-windows.zip 参考:https://blog.csdn.net/qq951127336/article/details/82755883 adb 阅读全文
posted @ 2019-05-31 18:13 bugbeta 阅读(3328) 评论(0) 推荐(0) 编辑