SSH无密登录配置 1)配置ssh (1)基本语法 ssh另一台电脑的ip地址 (2)ssh连接时出现Host key verification failed的解决方法 ssh hadoop103 出现: The authenticity of host 'hadoop103 (192.168.18 ...
分类:
其他好文 时间:
2021-06-05 18:38:40
阅读次数:
0
#使用Markdown格式 最近的事 课程考试 程序比赛 四级 回家的事 考研还是就业(好慌) 考驾照 该不该买计算机网络的书 Linux的学习 public static void main(String[] args){ SyStem.out.println("Hello,World"); } ...
分类:
其他好文 时间:
2021-06-05 18:37:20
阅读次数:
0
1,拉取镜像 docker pull nacos/nacos-server:1.3.2 docker images | grep nacos-server 2,运行容器 docker run --name nacos-server -e MODE=standalone -e MYSQL_SERVIC ...
分类:
数据库 时间:
2021-06-05 18:34:43
阅读次数:
0
1.写个配置类CorsConfig (如果不行,可以不写此类,和springcloud的版本有关) package net.youqu.micro.service.config; import org.springframework.context.annotation.Bean; import o ...
分类:
其他好文 时间:
2021-06-05 18:32:57
阅读次数:
0
定时任务简介 什么是定时任务 maintains crontab files for individual users 为单一用户维护crontab文件 为什么要使用定时任务 使用计划任务可以周期性的执行一些命令、脚本等,比如批量服务、备份脚本 Linux系统的定时任务分类 1、linux系统自身定 ...
分类:
系统相关 时间:
2021-06-05 18:27:27
阅读次数:
0
pip换源 1 pip3 install 模块 # 去国外下,比较慢 2 pip3 install -i 国内源(豆瓣,清华)模块 # 快一些,但是每次都要加 -i 3 在pycharm中配置 4 在机器上,永久配置 文件管理器文件路径地址栏敲:%APPDATA% 回车,快速进入 C:\Users\ ...
分类:
其他好文 时间:
2021-06-05 18:22:39
阅读次数:
0
一、连接条件 1、启动oracle数据库 2、启动监听程序 3、配置listener.ora与tnsnames.ora 4、配置sqlnet.ora设置低版本客户端与高版本数据库的兼容性(非必须) 5、创建新用户 二、连接过程 1、配件listener.ora与tnsnames.ora 2、配置sq ...
分类:
数据库 时间:
2021-06-05 18:18:35
阅读次数:
0
一、代码 在manifest.json中配置,官网文档:https://uniapp.dcloud.io/component/mp-weixin-plugin "mp-weixin" : { "appid" : "", "setting" : { "urlCheck" : false, "minif ...
分类:
移动开发 时间:
2021-06-05 18:17:48
阅读次数:
0
在 linux 下面,查找路径一般是 where ,但是同样的命令在PS下面是不行的。 在PS下有个查看别名的命令:Get-Alias ,看一下where是啥? Alias where -> Where-Object 原来 where 是 Where-Object 这个命令的别名,并不是查看路径用的 ...
分类:
系统相关 时间:
2021-06-05 18:16:02
阅读次数:
0
nginx参数优化 主要为两大类配置 减少nginx进程处理事务的上下文切换,提高服务响应速度 增加nginx进程的优先级,减少系统其他无关任务对nginx进程的影响 1. 进程绑定核心 2. 开启nginx的CPU零拷贝 3. 提高nginx进程的时间切片(提高nginx进程优先级) 4. 服务模 ...
分类:
其他好文 时间:
2021-06-05 18:04:53
阅读次数:
0