1.问题背景 基于docker容器yum install安装的RabbitMQ,这里需要修改RabbitMQ下的相关配置文件,我这里关闭了RabbitMQ。 修改之后重启RabbitMQ,发现Restart不了了,而且还直接抛出了异常~~尴尬! 异常信息: Job for rabbitmq-serv ...
分类:
其他好文 时间:
2021-04-15 12:19:23
阅读次数:
0
Log File Sync …. It may not be your headache DBAs !!! My company got a new customer for our product and around 2-3 months ago all setup was formed for ...
分类:
数据库 时间:
2021-04-14 12:41:13
阅读次数:
0
今天面试学费了一个小技巧 pstack jstack gdb attach 如果CPU过高,面试怎么初步定位,如何辅助开发定位 1,log备份 2,top 之类的信息备份 3,coredump 信息备份 4,我不知道的 堆栈信息备份!! 1,top查看pid 2,pstack 进程ID显示线程堆栈 ...
分类:
系统相关 时间:
2021-04-14 12:06:58
阅读次数:
0
var Book = {} var name = ''; Object.defineProperty(Book, 'name', { set: function (value) { name = value; console.log('你取了一个书名叫做' + value); }, get: fun ...
分类:
其他好文 时间:
2021-04-14 11:55:37
阅读次数:
0
一. RabbitMq简介 二. 安装步骤 参考: https://www.cnblogs.com/yaopengfei/p/13763500.html (需要补充一下) ! 作 者 : Yaopengfei(姚鹏飞) 博客地址 : http://www.cnblogs.com/yaopengfei ...
分类:
其他好文 时间:
2021-04-14 11:49:16
阅读次数:
0
一个具有迷惑性的例子,底下的两种情况可以看做两个循环,第一个只要满足一个条件就跳出循环,第二个是不管满足几个条件,都会往下走直至循环结束。 1 var a = 5; 2 if (a > 3) { 3 console.log("第一次执行"); //只有这一个会打印 4 } else if (a > ...
分类:
Web程序 时间:
2021-04-13 12:54:58
阅读次数:
0
查看所有配置,用户信息和文件位置 git config --list --show-origin 用户信息配置 git config --global user.name "user_name" git config --global user.email "user_email@qq.com" 本 ...
分类:
其他好文 时间:
2021-04-13 12:23:36
阅读次数:
0
package stream import ( "log" "reflect" "sort" ) type ( // a Stream is where one can drain data from Stream chan interface{} // buffer stream BufferSt ...
1、 https://blog.csdn.net/weixin_44014981/article/details/84888718 ...
分类:
数据库 时间:
2021-04-13 12:15:20
阅读次数:
0
成员变量的注入是在Bean创建成功之后,通过setter方法进行注入的。所以下面会获取不到值 @RestController public class VipsoftImController { @Autowired private ZooKeeperUtil zooKeeperUtil; @Req ...
分类:
其他好文 时间:
2021-04-13 12:07:49
阅读次数:
0