摘要: # It imports the PatternFill class from the openpyxl.styles module. from openpyxl.styles import PatternFill # It imports the colors class from the ope 阅读全文
posted @ 2023-12-12 09:56 ament 阅读(10) 评论(0) 推荐(0) 编辑
摘要: https://charts.bitnami.com/bitnami 阅读全文
posted @ 2022-06-15 15:35 ament 阅读(106) 评论(0) 推荐(0) 编辑
摘要: #!/bin/sh docker rm -f $(docker ps -qa) docker volume rm $(docker volume ls -q) cleanupdirs="/var/lib/etcd /etc/kubernetes /etc/cni /opt/cni /var/lib/ 阅读全文
posted @ 2022-06-12 19:11 ament 阅读(43) 评论(0) 推荐(0) 编辑
摘要: https://kuboard.cn/install/install-k8s.html#kuboard-spray 阅读全文
posted @ 2022-04-08 10:57 ament 阅读(75) 评论(0) 推荐(0) 编辑
摘要: docker部署mysql的问题:带有表及数据的mysql容器,打包成镜像迁移之后,数据丢失 这里给出一个解决方法: 思想:在创建镜像的时候就要修改数据存放的位置。然后启动它。然后正常的建立数据库,commit。这样就好啦!!! 创建镜像,编写Dockerfile: FROM mysql:lates 阅读全文
posted @ 2022-04-01 22:41 ament 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 命令使用格式: kubectl label nodes 节点名字 node-role.kubernetes.io/ROLES属性名称=或- kubectl label nodes 节点名字 node-role.kubernetes.io/ROLES属性名称=或- kubectl label node 阅读全文
posted @ 2022-03-30 15:22 ament 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 直接docker下载 docker pull yuanter/unblockneteasemusic:latest 运行unblockneteasemusic docker run -d --restart=always --name unblockneteasemusic -p 6780:8080 阅读全文
posted @ 2021-12-28 19:33 ament 阅读(298) 评论(0) 推荐(0) 编辑
摘要: apt-get install apache2-utils ab -n 100 -c 10 http://47.99.37.122:8100/blogs n为总数,c为并发数 webbench压测 wget http://soft.vpser.net/test/webbench/webbench-1 阅读全文
posted @ 2021-10-29 21:24 ament 阅读(33) 评论(0) 推荐(0) 编辑
摘要: docker run -d --name container_name \ //-d表示容器后台运行 --name指定容器名字 -p 7474:7474 -p 7687:7687 \ //映射容器的端口号到宿主机的端口号 -v /home/neo4j/data:/data \ //把容器内的数据目录 阅读全文
posted @ 2021-10-26 22:00 ament 阅读(168) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2021-09-30 09:35 ament 阅读(1288) 评论(0) 推荐(0) 编辑