公众号:架构师与哈苏
关注公众号进入it交流群! 公众号:架构师与哈苏 不定时都会推送一些实用的干货。。。
上一页 1 2 3 4 5 6 ··· 31 下一页
摘要: 介绍 在计算机领域,SSH文件传输协议(英语:SSH File Transfer Protocol,也称Secret File Transfer Protocol,中文:安全文件传送协议,英文:Secure FTP或字母缩写:SFTP)是一数据流连接,提供文件访问、传输和管理功能的网络传输协议。 开 阅读全文
posted @ 2022-03-15 13:19 公众号/架构师与哈苏 阅读(318) 评论(0) 推荐(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 公众号/架构师与哈苏 阅读(34) 评论(0) 推荐(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 公众号/架构师与哈苏 阅读(87) 评论(0) 推荐(0) 编辑
摘要: vim /etc/ssh/sshd_config # PermitRootLogin Without-password PermitRootLogin yes # PasswordAuthentication no PasswordAuthentication yes systemctl resta 阅读全文
posted @ 2022-03-09 15:22 公众号/架构师与哈苏 阅读(420) 评论(0) 推荐(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 公众号/架构师与哈苏 阅读(155) 评论(0) 推荐(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 公众号/架构师与哈苏 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 官网:https://multipass.run/ 阅读全文
posted @ 2022-03-09 11:48 公众号/架构师与哈苏 阅读(27) 评论(0) 推荐(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 公众号/架构师与哈苏 阅读(34) 评论(0) 推荐(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 公众号/架构师与哈苏 阅读(64) 评论(0) 推荐(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 公众号/架构师与哈苏 阅读(19) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 31 下一页