上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页

通过pid查容器名

摘要: 可以使用 nsenter 列出 hostname 来查看是哪个容器 nsenter --pid --uts -t $pid hostname 阅读全文
posted @ 2022-08-17 16:36 Colin88 阅读(103) 评论(0) 推荐(0) 编辑

PostgreSQL

摘要: 使用 DELETE 语句可以删除数据表里的所有数据。然而,对于包含大量数据的表来说,使用 TRUNCATE TABLE 将更高效。 TRUNCATE TABLE 语句在不扫描表的情况下,删除表里的所有数据。这就是它比 DELETE 快的原因。另外,它立即回收存储空间,所以不必执行随后的 VACUUM 阅读全文
posted @ 2022-08-17 10:48 Colin88 阅读(56) 评论(0) 推荐(0) 编辑

CentOS下双网卡双IP不同IP段配置

摘要: eth0:10.0.7.2 gw :10.0.7.254 netmask:255.255.255.0 eth1:168.6.101.2 gw :168.6.101.254 netmask:255.255.255.0 一、配置网卡: cat /etc/sysconfig/network-scripts 阅读全文
posted @ 2022-08-02 17:51 Colin88 阅读(666) 评论(0) 推荐(0) 编辑

Centos 配置多个虚拟IP

摘要: Centos 配置多个虚拟IP 临时设置 ifconfig enp2s0:3 192.168.3.152 netmask 255.255.255.0 up 永久生效 TYPE=Ethernet BOOTPROTO=none NAME=enp2s0 DEVICE=enp2s0 HWADDR=40:8d 阅读全文
posted @ 2022-08-02 15:35 Colin88 阅读(837) 评论(0) 推荐(0) 编辑

git

摘要: git gitlab git使用 https://git-scm.com/book/zh/v2 http://www.runoob.com/git/git-tutorial.html 常用命令 gitlab-ctl status gitlab-ctl start gitlab-ctl stop gi 阅读全文
posted @ 2022-07-15 17:48 Colin88 阅读(64) 评论(0) 推荐(0) 编辑

linux sort

摘要: sort 用法:sort [选项]... [文件]... 或:sort [选项]... --files0-from=F 串联排序所有指定文件并将结果写到标准输出。 长选项必须使用的参数对于短选项时也是必需使用的。 排序选项: -b, --ignore-leading-blanks 忽略前导的空白区域 阅读全文
posted @ 2022-07-12 09:38 Colin88 阅读(36) 评论(0) 推荐(0) 编辑

Linux 查看某一个进程占用内存情况

摘要: Linux下查看某一个进程所占用的内存,首先可以通过ps命令找到进程id,比如 ps -ef | grep kafka 可以看到kafka这个程序的进程id 可以看到是2913,现在可以使用如下命令查看内存: top -p 2913 这样可以动态实时的看到CPU和内存的占用率,然后按q键回到命令行 阅读全文
posted @ 2022-07-12 09:17 Colin88 阅读(9535) 评论(0) 推荐(0) 编辑

python-zip()

摘要: 在使用迭代时,可以通过zip()函数对多个序列进行并行迭代 days = ['Monday','Tuesday','Wednesday'] chinese = ['星期一','星期二','星期三',] number = [0,1,2] for a,b,c in zip(days,chinese,nu 阅读全文
posted @ 2022-07-09 09:35 Colin88 阅读(15) 评论(0) 推荐(0) 编辑

Navicat15破解使用

摘要: Navicat破解使用 Navicat是一个好用的数据库管理工具 链接:https://pan.baidu.com/s/1RpGQ2n2hE6JM27r7LSZruQ 提取码:uk2n 0、注册机下载(https://files.cnblogs.com/files/ogurayui/Keygen.j 阅读全文
posted @ 2022-07-05 14:50 Colin88 阅读(1220) 评论(0) 推荐(2) 编辑

python-其他

摘要: 转: https://hellogitlab.com/backend/python/ 阅读全文
posted @ 2022-07-05 10:00 Colin88 阅读(12) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页