摘要: mkfs.ext4 /dev/vdb mkdir /data echo `blkid /dev/vdb | awk '{print $2}' | sed 's/\"//g'` /data ext4 defaults 0 0 >> /etc/fstab mount -a mkdir -p /share 阅读全文
posted @ 2025-12-08 12:34 julian_chang 阅读(8) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2025-12-08 12:31 julian_chang 阅读(7) 评论(0) 推荐(0)
摘要: 一、配置集群更新授权 1.将授权文件放入数据库目录中替换原有授权问题 2.进入kingbase/bin目录下,执行./sys_ctl reload -D <数据目录> 二、配置集群数据源 主节点 192.168.0.111 备节点 192.168.0.112 端口 54321 业务库名 ceshid 阅读全文
posted @ 2025-12-08 12:30 julian_chang 阅读(30) 评论(0) 推荐(0)
摘要: 在 Linux 中,如果某个进程占用内存过高,可能会触发 OOM Killer(Out-of-Memory Killer),系统会自动选择并终止占用内存最多的进程。但默认策略可能不符合需求,我们可以手动调整 OOM Killer 的优先级,让它在内存不足时优先杀掉指定的进程。 1. 查看 OOM K 阅读全文
posted @ 2025-08-12 17:39 julian_chang 阅读(31) 评论(0) 推荐(0)
摘要: via https://blog.csdn.net/weixin_44554142/article/details/144859450 阅读全文
posted @ 2025-04-09 14:44 julian_chang 阅读(7) 评论(0) 推荐(0)
摘要: <iframe id="myIframe" src="http://127.0.0.1:5208/campus-recruitment/index.html" style="width:100%; border:none; overflow:hidden;"></iframe> <script> f 阅读全文
posted @ 2025-04-01 09:33 julian_chang 阅读(32) 评论(0) 推荐(0)
摘要: 1. WEB容器配置->HTTP通道管理->tong-http-listener 修改端口及编码2. WEB容器配置->虚拟主机管理->Property属性 allowLinking true //设置允许软链接 cacheMaxSize 524288 cachingAllowed true //去 阅读全文
posted @ 2024-11-22 09:24 julian_chang 阅读(803) 评论(0) 推荐(0)
摘要: 首先要切换到数据库用户中 su - db2inst1 1.连接数据库 db2 connect to databaseName 2.创建数据库 db2 create db databaseName using codeset utf-8 territory CN 3.断开连接 db2 force ap 阅读全文
posted @ 2023-11-17 09:11 julian_chang 阅读(233) 评论(0) 推荐(0)
摘要: 服务端 cat /etc/exports /data/disk1/backup 172.10.0.*(rw,sync,insecure,no_subtree_check,no_root_squash) 客户端 yum install showmount showmount -e 172.10.0.1 阅读全文
posted @ 2023-11-16 17:26 julian_chang 阅读(18) 评论(0) 推荐(0)
摘要: 214、215 两台服务器 1.下载MySQL安装包 https://cdn.mysql.com/archives/mysql-5.7/mysql-5.7.43-linux-glibc2.12-x86_64.tar.gz 2.上传至服务器并解压 ./bin/mysqld --initialize - 阅读全文
posted @ 2023-11-16 17:23 julian_chang 阅读(85) 评论(0) 推荐(0)