安装mailx,靠它来发送邮件yuminstallmailx编辑配置文件vim/etc/mail.rc#添加如下内容setfrom=xxxx@163.comsetsmtp=smtp.163.comsetsmtp-auth-user=xx@qq.comsetsmtp-auth-password=xxxsetsmtp-auth=login---说明from:来自发送的邮箱smtp:指定第三方发邮件的s
分类:
系统相关 时间:
2020-08-17 17:39:05
阅读次数:
78
Password Validation插件和组件 在MySQL 8.0之前,MySQL使用的是validate_password插件(plugin)检测、验证账号密码强度,保障账号的安全性,而到了MySQL 8.0,引入了服务器组件(Components)这个特性,validate_password... ...
分类:
数据库 时间:
2020-08-17 16:58:17
阅读次数:
135
参考地址:https://mp.baomidou.com/guide/quick-start.html 快速入手: SpringBoot项目依赖: <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot ...
分类:
其他好文 时间:
2020-08-15 22:28:31
阅读次数:
72
1.寻找镜像 国内镜像地址:http://hub.daocloud.io/ docker run --restart=always --name mc_mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=root -e TZ=Asia/Shanghai -d daoc ...
分类:
数据库 时间:
2020-08-15 22:22:06
阅读次数:
87
主要内容 1. DQL:查询语句 1. 排序查询 2. 聚合函数 3. 分组查询 4. 分页查询?2. 约束3. 多表之间的关系4. 范式5. 数据库的备份和还原 DQL:查询语句 1. 排序查询 * 语法:order by 子句 * order by 排序字段1 排序方式1 , 排序字段2 排序方 ...
分类:
数据库 时间:
2020-08-15 22:21:31
阅读次数:
92
Secret 使用类似于 ConfigMap,支持两种形式的使用: 将 Secret 作为环境变量暴露给容器进程使用。 将 Secret 通过volume 数据卷提供给容器进程使用。 为啥还要 Secret? Secret 顾名思义,是用于存储加密数据的 [root@master01 templat ...
分类:
Web程序 时间:
2020-08-13 12:28:09
阅读次数:
93
一.用户授权 1)普通权限 grant ${autoType1, autoType2, autoType3, ...} to ${userName} identified by ${password}; 例1: grant connect, resource to scott identified ...
分类:
数据库 时间:
2020-08-13 12:24:41
阅读次数:
188
1 import paramiko 2 import getpass 3 4 # 远程设备的IP 端口 用户名 密码 5 IP = "10.8.12.45" 6 port = 22 7 remote_username = "uos-0804" 8 remoet_password = "1" 9 # ...
分类:
编程语言 时间:
2020-08-12 15:53:39
阅读次数:
65
安装环境:CPU:2C内存:8GIP:172.24.77.241(Server1)IP:172.24.77.243(Server2)服务器1安装dockeryuminstalldocker-ysystemctlstartdockersystemctlenabledocker服务器1安装dockeryuminstalldocker-ysystemctlstartdockersystemctlenab
分类:
其他好文 时间:
2020-08-11 09:29:26
阅读次数:
110
不小心忘记了grafana web界面的密码后,使用官网的方式重置密码http://docs.grafana.org/administration/cli/#reset-admin-password 但是并没有成功。 然后使用google到的另外一个方法重置成功了,现在记录下来: 1.查找grafa ...
分类:
其他好文 时间:
2020-08-10 14:32:32
阅读次数:
67