k8s证书浅析 来源:https://zhuanlan.zhihu.com/p/123858320 建K8S集群 kubeadm 会生成的很多证书 [root@k8s-master01 ~]# cd /etc/kubernetes/pki [root@k8s-master01 pki]# tree ...
分类:
其他好文 时间:
2021-06-10 18:23:04
阅读次数:
0
1、安装vue npm install vue --save 2、安装webpack与webpack-dev-server;(webpack-dev-server是一个小型的node.js express服务器) npm install webpack webpack-dev-server --sa ...
分类:
Web程序 时间:
2021-06-10 17:45:52
阅读次数:
0
目录解释 /bin:bin是Binary的缩写, 这个目录存放着最经常使用的命令。 /boot:这里存放的是启动Linux时使用的一些核心文件,包括一些连接文件以及镜像文 件。 /dev:dev是Device(设备)的缩写, 存放的是Linux的外部设备,在Linux中访问设备的方 式和访问文件的方 ...
分类:
系统相关 时间:
2021-06-10 17:42:28
阅读次数:
0
包管理工具npm: Node Package Manager,也就是Node包管理器; 但是目前已经不仅仅是Node包管理器了,在前端项目中我们也在使用它来管理依赖的包; 比如express、koa、react、react-dom、axios、babel、webpack等等; npm管理的包存放在哪 ...
分类:
其他好文 时间:
2021-06-09 10:34:47
阅读次数:
0
下载NPM (node 文件管理) 第一步下去官网下载nodejs http://nodejs.cn/ 第二步下载npm 由于国内防火墙拦截 下载淘宝的cnpm 粘贴cmd回车 npm install -g cnpm --registry=https://registry.npm.taobao.or ...
分类:
其他好文 时间:
2021-06-09 10:29:38
阅读次数:
0
find()后sort排序报错: 在使用node.js+mongodb开发的后端项目,在查询时,使用了排序,出现如下报错 Mongodb: Sort operation used more than the maximum 33554432 bytes of RAM1Mongodb的sort操作是把 ...
分类:
数据库 时间:
2021-06-08 23:44:06
阅读次数:
0
Prerequisites: Node OS IP k8s-master CentOS7 192.168.137.161 k8s-node1 CentOS7 192.168.137.162 Now we have 2 working CentOS virtual machine, which can ...
分类:
其他好文 时间:
2021-06-08 23:40:34
阅读次数:
0
const express = require("express"); //创建服务器 var app = express(); //配置服务器的端口 app.listen(8080); app.get("/login",(req,res)=>{ //普通响应 // res.end("今天天气好晴朗 ...
分类:
Web程序 时间:
2021-06-08 23:39:34
阅读次数:
0
const express = require("express"); const app = express(); app.listen(8080); /** * 请求方式一 * http://localhost:8080/reg?username=zhangsan&password=123456 ...
分类:
Web程序 时间:
2021-06-08 23:36:42
阅读次数:
0
import turtle from random import * from math import * turtle.seth(90) def tree(n,l): turtle.down() turtle.pencolor('#410200') turtle.pensize(n*3) turt ...
分类:
其他好文 时间:
2021-06-08 23:16:21
阅读次数:
0