上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 28 下一页
摘要: 1.说明 本次编译是因为公司适配鲲鹏arm系列,业务涉及到了nacos-server,所以就选择最新版本进行了编译,期间也想直接使用官方镜像nacos/nacos-server: v2.1.2-slim、nacos/nacos-server:v2.2.0-slim,无一例外失败了,启动不了,所以最后 阅读全文
posted @ 2024-05-16 13:16 Leonardo-li 阅读(3436) 评论(0) 推荐(0)
摘要: 1.nacos官方文档 https://nacos.io/zh-cn/docs/open-api.html 2.参数获取 3.nacos例子(其余例子可参考文档) #调用api发布配置 curl -X POST -F "[email protected]" -F "conten 阅读全文
posted @ 2024-05-14 13:04 Leonardo-li 阅读(329) 评论(0) 推荐(0)
摘要: 1.yq介绍 一个轻量级、可移植的命令行 YAML、JSON 和 XML 处理器。yq使用类似jq 的语法,但可以处理 yaml 文件以及 json、xml、properties、csv 和 tsv。它还不支持所有jq功能 - 但它确实支持最常见的操作和功能,并且正在不断添加更多功能 2.githu 阅读全文
posted @ 2024-05-14 11:25 Leonardo-li 阅读(869) 评论(0) 推荐(0)
摘要: 1.bond介绍以太网通道绑定(Ethernet Channel Bonding)是一种网络技术,用于将多个物理网络接口(通常是以太网网卡)组合成一个逻辑接口。这样做的目的是增加网络带宽、提高可靠性和提供冗余备份。 在以太网通道绑定中,多个物理接口被绑定在一起形成一个虚拟的接口,称为 Bond 接口 阅读全文
posted @ 2024-05-08 11:32 Leonardo-li 阅读(6379) 评论(0) 推荐(0)
摘要: 1.wget下载Gitlab项目下整个分支的的存档,download_branch_archive.sh #!/bin/bash # GitLab 实例的地址 GITLAB_HOST="172.16.88.5" # 项目 ID PROJECT_ID="108" # 分支名称 BRANCH="Stan 阅读全文
posted @ 2024-05-07 15:30 Leonardo-li 阅读(433) 评论(0) 推荐(0)
摘要: 1.下载nginx源码包 https://nginx.org/en/download.htmlhttps://nginx.org/download/ 2.下载编译nginx依赖包,可根据自己需求进行下载 #pcre(处理正则表达式) http://downloads.sourceforge.net/ 阅读全文
posted @ 2024-04-28 18:32 Leonardo-li 阅读(2983) 评论(0) 推荐(1)
摘要: 1.部署说明 ferry工单系统部署参考官方文档,采用docker-compose的方式。 2.github地址 https://github.com/lanyulei/ferry?tab=readme-ov-file#readme 3.部署步骤 注:mysql、redis的镜像可以从docker 阅读全文
posted @ 2024-04-23 09:39 Leonardo-li 阅读(2197) 评论(0) 推荐(0)
摘要: 1.tar zcf 打包目录时,排除其中的一些目录或者文件 tar --exclude=dir1 --exclude=dir2 --exclude=file1 -czvf archive.tar.gz source_directory 2.yum 只下载不安装包 yum -y install nfs 阅读全文
posted @ 2024-04-19 14:18 Leonardo-li 阅读(162) 评论(0) 推荐(0)
摘要: #!/bin/bash # 密码 password="your_password_here" # 加密函数 encrypt() { input_file="$1" output_file="$input_file.enc" openssl enc -aes-256-cbc -salt -in "$i 阅读全文
posted @ 2024-04-17 17:56 Leonardo-li 阅读(165) 评论(0) 推荐(0)
摘要: 1.执行命令 #光标隐藏-终端命令 echo -e "\033[?25l" #光标显示-终端命令 echo -e "\033[?25h" 2.永久执行 vim /etc/profile 添加到最后一行 echo -e "\033[?25h" source /etc/profile 阅读全文
posted @ 2024-04-17 10:09 Leonardo-li 阅读(307) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 28 下一页