记一次Spring Boot项目整合 JavaMailSender 发送电子邮件配置异常调试经验。 ...
分类:
其他好文 时间:
2020-07-30 22:08:37
阅读次数:
173
在搭建集群之前需要准备一个自定义网络做redis之间通讯 docker network create redis --subnet 172.38.0.0/16 然后我们就可以开始搭建集群啦。 废话不多说上代码 (1)先创建6个redis容器 for port in $(seq 1 6); do mk ...
分类:
其他好文 时间:
2020-07-30 16:40:57
阅读次数:
116
为了方便大家早日找到面试状态,这回特地将我之前面试的一些面经贡献出来给大家学习。我在去年的秋招过程中,主要面试的岗位都是以C++语言为主,包括后台、客户端和游戏开发等。
分类:
其他好文 时间:
2020-07-30 10:55:36
阅读次数:
98
Expect脚本批量执行命令 #!/bin/bash cat /root/iplist|while read line do a=($line) expect <<EOF set timeout 3 spawn ssh root@${a[0]} expect { "*yes/no" { send " ...
分类:
其他好文 时间:
2020-07-29 21:53:49
阅读次数:
77
自动化配置脚本oracle12c.sh,如下: #!/bin/sh ##gcc-4.9 ##debian-8.11,buildin glibc version is 2.19 ###################################### cat <<eof>>/etc/profile ...
分类:
数据库 时间:
2020-07-29 15:00:40
阅读次数:
75
#!/bin/sh ##gcc-6##debian-9.13,buildin glibc version is 2.24######################################cat <<eof>>/etc/profileexport DISPLAY=192.168.157.1: ...
分类:
数据库 时间:
2020-07-29 00:45:50
阅读次数:
120
废话不多说了。一切见:setup-oracle11g.sh #!/bin/sh ##gcc-8 ###################################### cat <<eof>>/etc/profile export DISPLAY=192.168.157.1:0 alias cl ...
分类:
数据库 时间:
2020-07-28 17:09:12
阅读次数:
86
单向链表的增删改查(C语言版)#include<stdio.h>#include<stdlib.h>structStucreate(intn);voidprint(structStuhead);voiddeleteNode(structStuhead,intn);voidinsertNode(structStuhead,intn);voidchange(structStuh
分类:
编程语言 时间:
2020-07-28 10:21:23
阅读次数:
88
最短路计数都会吧都会吧都会吧(yousiki&&zhoutb行为)(狗头 逃:) 反正我不会,估计你们都会:),放个板子 cnt[1] = 1,dis[1] = 0; while(!q.empty()){ int x = q.top().front; q.pop(); if(vis[x]) cont ...
分类:
其他好文 时间:
2020-07-28 00:23:21
阅读次数:
70
. PHP 和 MySql 代码实例 query("SELECT CompanyName, City, Country FROM Customers"); $outp = ""; while($rs = $result->fetch_array(MYSQLI_ASSOC)) { if ($outp ...
分类:
其他好文 时间:
2020-07-27 09:52:06
阅读次数:
76