会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
一加一等于=
博客园
首页
新随笔
联系
订阅
管理
2024年6月28日
Windows CMD Commands
摘要: Common Windows Command Prompt (CMD) commands:1. `dir`: Lists files and directories in the current directory.2. `cd`: Changes the current directory.3.
阅读全文
posted @ 2024-06-28 15:39 从零开始的0
阅读(47)
评论(0)
推荐(0)
2024年6月19日
Linux服务器校时
摘要: yum install ntp ntpdate cn.pool.ntp.org date crontab -e 00 12 * * * /sbin/ntpdate cn.pool.ntp.org
阅读全文
posted @ 2024-06-19 16:15 从零开始的0
阅读(10)
评论(0)
推荐(0)
2023年11月29日
Nacos集群配置
摘要: docker run -itd \ -e MODE=cluster \ -e NACOS_APPLICATION_PORT=8860 \ -e NACOS_SERVERS=10.200.1.xx:8860,10.200.1.xx:8870,10.200.1.xx:8880 \ -e SPRING_D
阅读全文
posted @ 2023-11-29 15:58 从零开始的0
阅读(55)
评论(0)
推荐(0)
2022年11月24日
Pgsql查看当前在执行的SQL以及如何停止进程
摘要: SELECT procpid, START, now() - START AS lap, current_query FROM ( SELECT backendid, pg_stat_get_backend_pid(S.backendid) AS procpid, pg_stat_get_backe
阅读全文
posted @ 2022-11-24 10:07 从零开始的0
阅读(1052)
评论(0)
推荐(0)
2022年10月22日
CentOS 安装docker
摘要: 1. 旧版本删除 yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate \ docker-logrotate \ docke
阅读全文
posted @ 2022-10-22 12:58 从零开始的0
阅读(25)
评论(0)
推荐(0)
2022年10月13日
docker 安装RocketMQ集群(主从,同一服务器)
摘要: 一、安装 1. 选择镜像 (1)镜像搜索:docker search rocketmq 也可以访问网址:https://hub.docker.com/r/apache/rocketmq/tags (2)下拉镜像:docker pull apache/rocketmq:4.9.0 (3)同样,拉取管理
阅读全文
posted @ 2022-10-13 14:53 从零开始的0
阅读(1014)
评论(0)
推荐(0)
2022年9月2日
linux 防火墙
摘要: 查看防火墙状态:systemctl status firewalld 启动:systemctl start firewalld 停止:systemctl disable firewalld 禁用:systemctl stop firewalld 查看所有打开的端口:firewall-cmd --zo
阅读全文
posted @ 2022-09-02 16:07 从零开始的0
阅读(78)
评论(0)
推荐(0)
2022年7月27日
docker no main manifest attribute
摘要: 一、背景 使用docker运行jar镜像时,报错:“docker no main manifest attribute”,其实在本地使用【java -jar】运行该jar包,同样会报错“xxxx.jar中没有主清单属性”。 二、原因 打开jar包,可以发现文件夹【META-INF】中的文件【MANI
阅读全文
posted @ 2022-07-27 16:35 从零开始的0
阅读(2287)
评论(0)
推荐(0)
2022年7月26日
bootstrap.yml文件中@profile@无法被pom.xml中的profile配置替换问题处理
摘要: 一、背景 希望能够实现根据不同的环境动态读取对应的配置。 二、准备 bootstrap.yml文件内容 spring: application: name: ldap-agent-web profiles: active: @profile@ 不同环境的配置:application-dev.yml、
阅读全文
posted @ 2022-07-26 19:57 从零开始的0
阅读(1925)
评论(0)
推荐(0)
2021年6月17日
java.net.MalformedURLException: no protocol异常处理
摘要: 一、首先排除你的链接是否没有加协议,即加上“http或https”. 二、如果链接已有协议,还报错,则需要进行一下操作: // 第一步 String encoder = java.net.URLEncoder(url, "UTF-8"); //第二步 String decoder = java.ne
阅读全文
posted @ 2021-06-17 11:00 从零开始的0
阅读(6335)
评论(0)
推荐(0)
下一页
公告