上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 84 下一页

2024年6月18日

学习docker过程中,经常使用的命令

摘要: 常用命令:docker ps -a // 查看正在运行的容器docker ps -all // 查看所有的容器(包括正在运行的和已经停止的)docker images // 列出所有镜像docker exec -it msb-mysql /bin/bash 进入到容器中docker rm conta 阅读全文

posted @ 2024-06-18 17:46 ~码铃薯~ 阅读(2) 评论(0) 推荐(0) 编辑

docker启动报错

摘要: 首先关闭防火墙:systemctl stop firewalld 然后执行下面的命令就可以了 root@lmtest-u18:~# systemctl unmask docker.serviceroot@lmtest-u18:~# systemctl unmask docker.socketroot 阅读全文

posted @ 2024-06-18 17:10 ~码铃薯~ 阅读(3) 评论(0) 推荐(0) 编辑

2024年6月17日

新版本idea找不到自己想要的图标

摘要: 新版本idea找不到自己想要的图标 众所周知,新版本的idea页面简介了不少,但是有时候我们想要的图标一下子找不到那该怎么办呢。 可以直接进行搜索 阅读全文

posted @ 2024-06-17 16:12 ~码铃薯~ 阅读(5) 评论(0) 推荐(0) 编辑

2024年6月16日

Could not find artifact org.springframework.boot:spring-boot-starter-web:pom:unknown in alimaven (https://maven.aliyun.com/repository/public)

摘要: 出现这个问题的原因是pom.xml配置文件中没有配置 parent标签,也就是没有引入spring boot父依赖模块。 添加上以下内容就好了 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-s 阅读全文

posted @ 2024-06-16 10:17 ~码铃薯~ 阅读(781) 评论(0) 推荐(0) 编辑

2024年6月15日

mycat和sharding JDBC分库分表,MySQL数据库安装

摘要: mycat分库分表看的是马士兵的课程。 sharding JDBC:看的是狂神说的课程。 https://www.kuangstudy.com/zl/sharding#1369621064673521666 网址内涵mysql安装过程。 mysql5.7Linux版安装教程: https://www 阅读全文

posted @ 2024-06-15 15:24 ~码铃薯~ 阅读(7) 评论(0) 推荐(0) 编辑

2024年6月8日

新安装的虚拟机没有IP地址

摘要: https://baijiahao.baidu.com/s?id=1760412493213484381&wfr=spider&for=pc 阅读全文

posted @ 2024-06-08 15:35 ~码铃薯~ 阅读(5) 评论(0) 推荐(0) 编辑

2024年6月7日

adobepdf2023安装破解、pdf转成markword

摘要: https://www.bilibili.com/video/BV1cTTxeSEVa/?spm_id_from=333.337.search-card.all.click&vd_source=273847a809b909b44923e3af1a7ef0b1 https://www.bilibili 阅读全文

posted @ 2024-06-07 09:07 ~码铃薯~ 阅读(27) 评论(0) 推荐(0) 编辑

2024年6月1日

给Linux的虚拟机设置别名,同事设置免密登录

摘要: 我这里有四台虚拟机: 192.168.75.147192.168.75.148192.168.75.149192.168.75.150 分别修改对应的/etc/hosts文件,每个文件中都添加上以下内容 192.168.75.147 node1192.168.75.148 node2192.168. 阅读全文

posted @ 2024-06-01 22:00 ~码铃薯~ 阅读(9) 评论(0) 推荐(0) 编辑

2024年5月31日

public java.net.URL getResource(String name)获取到的路径乱码

摘要: 解决办法: String absolutePath = StaticResourceUtil.class.getResource("/").getPath();absolutePath = URLDecoder.decode(absolutePath, "utf-8");进行解码就可以了。 阅读全文

posted @ 2024-05-31 14:34 ~码铃薯~ 阅读(3) 评论(0) 推荐(0) 编辑

2024年5月28日

tomcat源码环境搭建

摘要: 参考网址:https://baijiahao.baidu.com/s?id=1725471336053737785&wfr=spider&for=pc 主要是下载下来源码之后,自己在项目中新创建一个pom.xml文件才行。 阅读全文

posted @ 2024-05-28 16:20 ~码铃薯~ 阅读(7) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 84 下一页

导航