摘要: 在 Linux 中,如果某个进程占用内存过高,可能会触发 OOM Killer(Out-of-Memory Killer),系统会自动选择并终止占用内存最多的进程。但默认策略可能不符合需求,我们可以手动调整 OOM Killer 的优先级,让它在内存不足时优先杀掉指定的进程。 1. 查看 OOM K 阅读全文
posted @ 2025-08-12 17:39 julian_chang 阅读(18) 评论(0) 推荐(0)
摘要: via https://blog.csdn.net/weixin_44554142/article/details/144859450 阅读全文
posted @ 2025-04-09 14:44 julian_chang 阅读(5) 评论(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 阅读(26) 评论(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 阅读(694) 评论(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 阅读(224) 评论(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 阅读(11) 评论(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 阅读(68) 评论(0) 推荐(0)
摘要: 1.查看编译列表 go tool dist list 2.常用编译 GOARCH=amd64;GOOS=linux GOARCH=arm64;GOOS=linux GOARCH=arm;GOOS=linux 3.依赖 go mod tidy 阅读全文
posted @ 2023-08-02 11:47 julian_chang 阅读(30) 评论(0) 推荐(0)
摘要: 1. lsnrctl start 2. sqlplus / as sysdba 3. startup; 4.ORA-00600: internal error code, arguments: [kcratr_scan_lastbwr] 数据库宕机之后,出现了逻辑坏块 (logically corr 阅读全文
posted @ 2023-06-19 12:30 julian_chang 阅读(14) 评论(0) 推荐(0)
摘要: 1.下载安装包 https://cdn-mogdb.enmotech.com/mogdb-media/3.0.3/MogDB-3.0.3-CentOS-x86_64.tar.gz 2.配置clusterconfig.xml <?xml version="1.0" encoding="UTF-8"?> 阅读全文
posted @ 2022-11-23 12:49 julian_chang 阅读(338) 评论(0) 推荐(0)