环境 virtual box 6.1 centos 7.8 docker 19.03 kubernetes 1.20.2 安装必备软件 添加 Kubernetes 仓库 cat <<EOF > /etc/yum.repos.d/kubernetes.repo [kubernetes] name=Ku ...
分类:
Web程序 时间:
2021-01-22 12:21:59
阅读次数:
0
方法一:安装chrome的github加速插件 然后就可以直接通过加速链接 下载了,如图所示。 方法二:通过代理的方式,一步搞定,如果你有代理,那么一定是这么玩的。 export ALL_PROXY=socks5://127.0.0.1:1080 测试一下TCP成功到达谷歌服务器,就说明咱们终端的T ...
分类:
其他好文 时间:
2021-01-22 12:17:41
阅读次数:
0
1 jwt:重点(跟语言,框架无关) -json web token -cookie:客户端浏览器上的键值对,数据不安全 -session:服务端的键值对(内存,数据库,redis,文件),安全,对服务端压力大 -token:三段:头.荷载.签名 -header(公司信息,加密方式。。。) -pay ...
分类:
其他好文 时间:
2021-01-22 12:13:35
阅读次数:
0
1. RMAN的默认配置 1 RMAN> show all; 2 3 using target database control file instead of recovery catalog 4 RMAN configuration parameters for database with db ...
分类:
其他好文 时间:
2021-01-22 12:06:50
阅读次数:
0
使用ip addr 查看哪个网卡没有分配 IP ip addr 我这里是 eth0 没有分配 IP 地址,使用 vi 来修改 ifcfg-xxx 配置文件 xxx 是通过ip addr 查询到的名字 [root@localhost ~]# vi /etc/sysconfig/network-scri ...
分类:
其他好文 时间:
2021-01-22 11:51:41
阅读次数:
0
cv::Mat transparentImage; cv::cvtColor(image, transparentImage, CV_BGR2BGRA); // find all white pixel and set alpha value to zero: for (int y = 0; y < ...
分类:
其他好文 时间:
2021-01-22 11:46:37
阅读次数:
0
一、类和对象 类即类别、种类,是面向对象设计最重要的概念,对象是特征与技能的结合体,而类则是一系列对象相似的特征与技能的结合体。 在现实世界中:先有对象,再有类; 在程序中:务必保证先定义类,后产生对象; class Student: school='oldboy' def __init__(sel ...
分类:
其他好文 时间:
2021-01-21 10:47:33
阅读次数:
0
DynamoDB supports two types of primary keys: Partition key: A simple primary key, composed of one attribute known as the partition key. Attributes in ...
分类:
其他好文 时间:
2021-01-19 12:30:09
阅读次数:
0
环境变量设置 设置root用户的密码 端口映射 处理用户远程连接登录异常 create user 'taishi'@'%' identified by 'aransfar@123'; grant all privileges on *.* to 'taishi'@'%' with grant opt ...
分类:
数据库 时间:
2021-01-19 11:46:37
阅读次数:
0
1. 配置双主: 双机名 win89.inno.com win88.inno.com 准备账号 SET SQL_LOG_BIN=0; set password for 'root'@'localhost'='123456'; grant all privileges on *.* to root@' ...
分类:
数据库 时间:
2021-01-18 11:43:38
阅读次数:
0