04 2022 档案
摘要:发现jenkins的job和工作区占用空间比较大,需进行清理。 workspace 清理直接在界面点击清理工作区即可。 jobs目录空间特别大,通过修改job配置,然后重新构建一次,空间就会释放。
阅读全文
摘要:wget https://www.kernel.org/pub/linux/utils/util-linux/v2.24/util-linux-2.24.tar.gz tar -zxvf util-linux-2.24.tar.gz && cd util-linux-2.24/ ./configur
阅读全文
摘要:1.导出指定表的数据 (包含 drop table ,create table insert into 及表结构和数据) mysqldump -uiXmpop -p -h -P3306 iXpmmp --tables sys_setting >/home/soft/t1.sql 2.导出指定表的结构
阅读全文
摘要:frp Server 端配置,在能上外网的公有云服务器上。 # cat frps.ini[common]authentication_method = tokenbind_port = 9090log_level = debugtls_only = falsetcp_mux = true 启动frp
阅读全文
摘要:三度 - 博客园 (cnblogs.com)
阅读全文
摘要:使用openssl 生成证书 折腾1小时,mmp除了坑 最后certgen-linux-amd64 生成证书才好使。 chmod +x certgen-linux-amd64 ./certgen-linux-amd64 -ca -host "10.XX.XX.XX" 这个host 地址是minio服
阅读全文
摘要:SQL> create user tom identified by tom321 ; 用户已创建。 SQL> grant dba to tom ; 授权成功。 新建表空间: create tablespace YRSSMIS DATAFILE 'D:\oracle\oradata\ep\YRSSM
阅读全文
摘要:根据提示:运行 journalctl 命令 GG 跳最后一行。 或者 查看 /run/initramfs/rdsosreport.txt 文件 关注这个:mount /dev/sda3 on /sysroot failed:Structure needs cleaning 执行文件系统修复 xfs_
阅读全文
摘要:查看当前用户权限: show grants ; show grants for current_user() ; show grants for 'user'@'%' ; 建用户赋予权限: create user 'li4' identified by 'abc123' ; grant all pr
阅读全文
摘要:5.7中 innodb存储引擎: 如果采用系统表空间,表数据存储在ibdata1中,采用独立表空间则如下所示: emp1.frm # 存表结构 emp1.ibd #存表数据 5.7 中myisam存储引擎: student_myisam.frm #存表结构 student_myisam.MYD #存
阅读全文
摘要:目录 一、服务器基线 1. 环境与软硬件规范 1.1. 运行环境 1.2. 软件版本 1.3. ASM磁盘组 2. 操作系统安装规范 2.1. 字符集 2.2. 时区 3. 操作系统配置规范 3.1. 系统服务 3.2. SELinux 3.3. 透明大页 3.4. NTP配置 3.5. 多路径软件
阅读全文