摘要:
1、首先安装SSH服务 yum install openssh-server 2、启动SSH服务 systemctl start sshd 3、查看SSH服务状态 systemctl status sshd 4、查看端口 netstat -antp | grep sshd 5、加入开机启动 syst 阅读全文
摘要:
第一个维度是方法论,数据湖其实是一个文件存储系统,用户可以往里面放任何一种文件或者数据,它的一个典型特点是事后建模,它的方法论是用户先把数据放上来,然后再考虑如何使用,也叫做SchemaOnRead。数据仓库正好相反,它是事前建模的模式,当你在把数据推进数据仓库的时候,要求先CreateTable/ 阅读全文
摘要:
一、下载SoftEther客户端 1.下载地址:链接:https://pan.baidu.com/s/1T5PUyysSo1hZhsLP3SF1Rw 提取码:7s1e 2.官网下载地址:http://softether.fishinfo.cn/cn.aspx 二、安装SoftEther客户端 1.双 阅读全文
摘要:
# Redis configuration file example. # # Note that in order to read the configuration file, Redis must be # started with the file path as first argumen 阅读全文
摘要:
错误信息: 1:M 23 Dec 2021 19:53:02.058 * Background saving started by pid 1848 1848:C 23 Dec 2021 19:53:02.058 # Failed opening the RDB file backup.db (in 阅读全文
摘要:
本文讲述通过Windows端的软件WinSCP通过ssh协议连接VM下的linux centos8。连接的原理图如下: 所以,centos系统上必须安装openssh-server,类似于服务器端。(因为是使用Windows下的软件来访问linux,所以Linux下不需要安装openssh的客户端) 阅读全文
摘要:
1.docker删除tag或repository为none的镜像 docker images -a|grep none|awk '{print $3}'|xargs docker rmi 2.在Docker中pull或build镜像的过程中,有时候会因为重复创建而产生虚悬镜像(当我们使用docker 阅读全文
摘要:
server { listen 443 ssl; server_name www.langmanezhuang.com; # 改为绑定证书的域名 # ssl 配置 #ssl on; ssl_certificate 1_langmanezhuang.com_bundle.crt; # 改为自己申请得到 阅读全文
摘要:
curl --silent --location https://rpm.nodesource.com/setup_8.x | sudo bash - yum install nodejs -y 阅读全文
摘要:
在打包时给vm加一个参数: -Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true 阅读全文