摘要:
介绍 在计算机领域,SSH文件传输协议(英语:SSH File Transfer Protocol,也称Secret File Transfer Protocol,中文:安全文件传送协议,英文:Secure FTP或字母缩写:SFTP)是一数据流连接,提供文件访问、传输和管理功能的网络传输协议。 开
阅读全文
posted @ 2022-03-15 13:19
公众号/架构师与哈苏
阅读(364)
推荐(0)
摘要:
允许ssh远程登陆 https://www.cnblogs.com/GoslingWu/p/15985317.html scp # 拉取远程服务器上的文件到本地 scp root@ip:路径 本地路径 例: scp root@192.168.64.11:/home/ubuntu/1.txt ./1.
阅读全文
posted @ 2022-03-15 11:33
公众号/架构师与哈苏
阅读(46)
推荐(0)
摘要:
版本 canal.deployer-1.1.5 canal.admin-1.1.5 rocketmq-all-4.9.3-bin-release rocketmq-deshboard-master mysql5.7 官网 链接:canal 链接:rocket 操作系统 centos7 mysql5.
阅读全文
posted @ 2022-03-11 17:23
公众号/架构师与哈苏
阅读(118)
推荐(0)
摘要:
vim /etc/ssh/sshd_config # PermitRootLogin Without-password PermitRootLogin yes # PasswordAuthentication no PasswordAuthentication yes systemctl resta
阅读全文
posted @ 2022-03-09 15:22
公众号/架构师与哈苏
阅读(478)
推荐(0)
摘要:
# 跳过授权表验证 sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf 最后添加: skip-grant-tables # 刷新权限 FLUSH PRIVILEGES; # 修改密码 ALTER USER 'root'@'%' IDENTIFIED WITH MY
阅读全文
posted @ 2022-03-09 13:02
公众号/架构师与哈苏
阅读(168)
推荐(0)
摘要:
方式一:使用skip-grant-tables sudo apt-get update sudo apt-get install mysql # 跳过授权表验证 sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf 最后添加: skip-grant-tables #
阅读全文
posted @ 2022-03-09 13:02
公众号/架构师与哈苏
阅读(102)
推荐(0)
摘要:
官网:https://multipass.run/
阅读全文
posted @ 2022-03-09 11:48
公众号/架构师与哈苏
阅读(39)
推荐(0)
摘要:
打开set Editor->File and Code Templates → Class #if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end #parse("File Header.java") #s
阅读全文
posted @ 2022-03-08 17:47
公众号/架构师与哈苏
阅读(53)
推荐(0)
摘要:
注解:EnableDimEnhance package com.comma.teeth.enhance.dim.annotation; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; i
阅读全文
posted @ 2022-03-08 16:16
公众号/架构师与哈苏
阅读(75)
推荐(0)
摘要:
公共类 接口 Student package com.example.demo.test.proxy; public interface Student { String eat(); String see(); } 实现类 StudentImpl package com.example.demo.
阅读全文
posted @ 2022-03-08 15:57
公众号/架构师与哈苏
阅读(32)
推荐(0)