- 博客(36)
- 收藏
- 关注
原创 Unit mysqld.service could not be found.
MySQL is not running, but lock file (/var/lock/subsys/mysql) exists ,进入目录删除掉 (/var/lock/subsys/mysql) mysqld 文件即可。云服务器部署mysql 5.7 之后只能使用 mysqld 命令启停,如果使用。4. 关闭之前正在运行的mysql (如果mysql 没启动忽略次步骤)3. 修改mysqld 内的mysql具体文件地址。1.找到mysql的 mysql.server文件。
2023-06-23 16:36:37
3806
原创 Communications link failure
Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
2023-03-15 13:45:05
403
原创 Topic my-replicated-topic not present in metadata after 60000 ms.
springboot 项目链接云服务器 kafka 异常
2022-10-30 10:53:59
1626
原创 Nginx 同时运行多个服务
版本: nginx-1.9.9编辑nginx.conf 配置文件,复制出一个新的 server 保证端口不冲突即可服务一:服务二:然后保存,重启nginx 即可。验证成功!!!
2022-02-07 17:33:09
3047
原创 NotFoundError: Failed to execute ‘removeChild‘ on ‘Node‘: The node to be removed is not a child of t
简单记录一下 docker 安装 neo4j 遇到的坑....1.docker 安装neo4j步骤 docker pull neo4j:3.42.启动 docker run -it -d -p 7474:7474 -p 7687:7687 neo4j:3.43.登录地址http://localhost:7474解决方案: 登录成功之前不要翻译 ,刷新页面重新登录就好了.....
2021-12-17 18:26:40
3502
原创 Method threw ‘java.lang.StackOverflowError‘ exception. Cannot evaluate org.zpw.demo.tree.Bina....
解决方案 重写toString 方法,然后把互相引入的字段给去掉即可!
2021-12-09 18:30:11
521
原创 Kibana server is not ready yet
1.首先确认防火墙是否已经关闭systemctl status firewalld2.确认版本是否一致docker images 3.进入kibana 容器查看yml 文件内 es地址是否正确#1.进入kibana 容器docker exec -it kibana /bin/bash#2.查看配置文件cd /config#3.地址更改为es的正确ip地址# vi kubana.yml4.保存修改kubana.yml 之后,重启kiba...
2021-11-09 15:56:14
539
原创 linux 部署 k8s 集群
1.关闭防火墙systemctl stop firewalldsystemctl disable firewalld2.关闭selinuxsed ‐i 's/enforcing/disabled/' /etc/selinux/config # 永久关闭setenforce 0 # 临时关闭 3、关闭 swap swapoff ‐a # 临时关闭 vim /etc/fstab # 永久关闭 #注释掉swap这行 # /dev/mapper/centos‐...
2021-10-13 17:06:23
462
原创 Linux 部署 rabbitmq 踩坑记录
一:开启管理界面及配置 执行: rabbitmq-plugins enable rabbitmq_managementPlugin configuration unchanged.Applying plugin configuration to rabbit@k8s-node2... failed.* Could not contact node rabbit@k8s-node2. Changes will take effect at broker restar...
2021-09-24 16:11:16
941
原创 swagger-ui 访问不到404 No mapping for GET /swagger-ui.html
之前由于springboot 集成shiro ,然后开放了cookie 导致 跨域问题,然后为了解决跨域问题 继承了WebMvcConfigurationSupport ,然后导致 swagger-ui 访问出现404异常!解决方案由下: 将之前集成的 WebMvcConfigurationSupport 更改为 实现 WebMvcConfigurer 即可!源码由下:@Configurationpublic class InterceptorConfig implements.
2021-09-16 10:03:54
1621
转载 swagger-ui 访问不到 No mapping for GET /swagger-ui.html
由于集成shiro 框架,然后开放了cookie ,在后台加了一个解决跨域问题的类,该类继承了WebMvcConfiguration,导致swagger的映射失效。原代码:解决方案:重新继承 WebMvcConfigurationSupport然后重写 addResourceHandlers 方法即可(源码由下)@Configurationpublic class WebMvcConfigurer extends WebMvcConfigurationSuppo...
2021-09-15 10:23:34
2163
1
原创 VUE + spring boot cookie 跨域问题解决
这个问题 真的是太烧脑了????... 本人百度了100种方法 都没有得到有效的解决!!! 最后苍天不负有心人...第一步:需要在前端添全局定义axios.defaults.withCredentials=true第二步: 添加 CorsConfig类@Configuration@EnableWebMvcpublic class CorsConfig implements WebMvcConfigurer { public void addCorsMa..
2021-09-14 18:12:40
444
原创 k8s 部署 Ingress 及使用
一:下载Ingress-controller.yaml 文件在k8s master 机器上执行以下载命令wget https://raw.githubusercontent.com/kubernetes/ingress-nginx/nginx-0.20.0/deploy/mandatory.yaml如果下载不成功,不慌,我这有现成的,直接复制粘贴()----------------mandatory.yaml start----------------------------------
2021-09-14 17:52:32
418
原创 linux 系统给普通用户添加root权限
第一步:vi /etc/sudoers第二步: 找到root 行 ,往下添加 (devops 用户) ,保存即可 devops ALL=(ALL) ALL
2021-08-18 10:04:07
333
转载 error: Metrics not available for pod default....
描述:在安装完k8s 集群之后,发现 kubectl top nodes 无法查看cpu 资源使用情况原因解析:未安装metrics-server 参考以下安装地址 ,成功安装即可https://blog.youkuaiyun.com/oyym_mv/article/details/87166639
2021-08-11 11:54:14
1531
原创 error:unable to recogni “*.yaml“ze no matcher for kind “Deployment“ in version “extensions/b1beta1“
问题原因分析 :一: 当前 kubenetes 版本 与 执行的 yaml 内置版本有冲突。解决方案 第一步: 将 apiVersion: ... 修改为: apps/v1 第二步:重新 执行 kubectl apply -f 命令即可二: 如果 发现提示 already existsError from server (AlreadyExists): error when creating "grafana.yaml": deployments...
2021-08-11 11:42:07
1832
原创 kubenetes 集群服务 断电重启--故障解决
一:异常现象:kubeadm reset 之后 , kubectl 所有命令 都报异常The connection to the server 10.168.0.176:6443 was refused - did you specify the right host or port? 解决方案:1.执行以下命令kubeadm init --image-repository=registry.aliyuncs.com/google_containers --pod-...
2021-08-10 18:52:30
805
转载 centos7.5 -bash: telnet: 未找到命令
在安装Telnet前先检查系统是否安装了telnet-server和xinetd一:在安装Telnet前先检查系统是否安装了telnet-server和xinetdrpm -qa telnet-serverrpm -qa xinetd二:如果没有安装,则开始安装,安装之前先查找Telnet的安装包yum list | grep telnet-serveryum list | grep xinetd执行安装,由于安装部分不方便截图,因此没有截;正常情况执行以下命令后会安装成功,如不
2021-07-31 19:19:22
6163
转载 http://mirrors.aliyun.com/docker‐ce/linux/centos/docker‐ce.repo to [Errno 14]
Could not fetch/save url http://mirrors.aliyun.com/docker‐ce/linux/centos/docker‐ce.repo to file /etc/yum.repos.d/docker‐ce.repo: [Errno 14] HTTP Error 404 - Not Found解决方案步骤:1.cd /etc/yum.repos.d国内无法连接docker默认的境外地址,删除docker相关的repo文件即可2. rm -..
2021-07-31 12:08:54
2261
原创 Cause: java.sql.SQLException: Parameter index out of range (2 > number of parameters, which is 1).
解决方案:删除掉xml 文件中 /**/ 这种类似的注释即可解决!
2021-06-11 11:21:17
1451
1
原创 springboot 及mysql数据库时区问题解决方案
一:在appliation.yml 文件中 的url 链接后 添加&serverTimezone=GMT%2B8
2021-06-11 11:17:37
425
2
翻译 Java 对象内存布局
一:废话不duo's <dependency> <groupId>org.openjdk.jol</groupId> <artifactId>jol-core</artifactId> <version>0.9</version> </dependency>
2021-05-27 18:39:17
56
翻译 springboot+Aop日志实现
一:首先定义日志切面/** * * * 自定义操作日志注解 * @author zhoupengwei */@Target(ElementType.METHOD) //注解放置的目标位置,METHOD是可注解在方法级别上@Retention(RetentionPolicy.RUNTIME) //注解在哪个阶段执行@Documentedpublic @interface OperLog { String operModul() default ""; // 操作模块
2021-05-13 09:49:23
305
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人