会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Leonardo-li
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
5
6
7
8
9
10
11
12
13
···
28
下一页
2024年5月16日
nacos2.3.2部署(鲲鹏arm版)
摘要: 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)
2024年5月14日
nacos接口使用
摘要: 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)
yq工具处理yaml文件
摘要: 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)
2024年5月8日
bond模式详解与配置
摘要: 1.bond介绍以太网通道绑定(Ethernet Channel Bonding)是一种网络技术,用于将多个物理网络接口(通常是以太网网卡)组合成一个逻辑接口。这样做的目的是增加网络带宽、提高可靠性和提供冗余备份。 在以太网通道绑定中,多个物理接口被绑定在一起形成一个虚拟的接口,称为 Bond 接口
阅读全文
posted @ 2024-05-08 11:32 Leonardo-li
阅读(6379)
评论(0)
推荐(0)
2024年5月7日
wget下载Gitlab的存档
摘要: 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)
2024年4月28日
nginx最新版编译(1.26.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)
2024年4月23日
ferry工单系统部署(docker)
摘要: 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)
2024年4月19日
linux运维常用命令总结
摘要: 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)
2024年4月17日
openssl批量给tar.gz文件加解密
摘要: #!/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)
linux命令行光标不显示
摘要: 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
下一页
公告