➜ ~ telnet 192.168.10.159 22 Trying 192.168.10.159... Connected to localhost. Escape character is '^]'. SSH-2.0-OpenSSH_6.6.1 ^] telnet> quit Connection closed.
telnet 的其他用法请自行百度一下/谷歌一下😆
nc ===> UDP
udp 协议监听的端口是不能用 telnet 命令来测试的,这里用到了 nc 命令
nc 命令的常用语法: nc -zuv IP port
z 将输入输出关闭
u 开启 UDP 模式
v 得到详细输出
1 2 3 4 5 6 7 8 9 10
➜ ~ nc -zuv 192.168.10.159 4500 found 0 associations found 1 connections: 1: flags=82<CONNECTED,PREFERRED> outif (null) src 10.1.100.12 port 53092 dst 192.168.10.159 port 4500 rank info not available
Connection to 192.168.10.159 port 4500 [udp/ipsec-msft] succeeded!
在/etc/sysconfig/static-router添加any net x.x.x.x/24 gw y.y.y.y
永久添加路由更新 2018-10-12
CentOS7下推荐使用上面第三种方法添加永久静态路由
1 2 3
[root@centos7 ~]# vi /etc/sysconfig/network-scripts/route-enp0s3 10.15.150.0/24 via 192.168.150.253 dev enp0s3 10.25.250.0/24 via 192.168.150.253 dev enp0s3
Raw 磁盘映像格式(默认)。这个格式的优点是可以简单、容易地导出到其它模拟器中。如果您的文件系统支持中断(例如在 Linux 中的 ext2 或者 ext3 以及 Windows 中的 NTFS),那么只有写入的字段会占用空间。使用 qemu-img info 了解 Unix/Linux 中映像或者 ls -ls 使用的实际大小。
qcow2
QEMU 映像格式,最万能的格式。使用它可获得较小映像(如果您的系统不支持中断,例如在 Windows 中,它会很有用)、额外的 AES 加密法、zlib 压缩以及对多 VM 快照的支持。目前也是虚拟池一直在使用的镜像格式。 例如: 转换之前,原镜像disk size大小为8G,转换后仅仅只有2.3G。
配置MySQL从库,启动slave线程后”Last_IO_Error: Got fatal error 1236 from master when reading data from binary log: ‘Could not find first log file name in binary log index file”的错误❌
step 1
先到slave中停止同步线程
1
mysql> stop slave for channel "db136"; # mysql5.7多源复制的语法
mysql> flush logs; mysql> show master status; +------------------+----------+--------------+------------------+-------------------+ | File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set | +------------------+----------+--------------+------------------+-------------------+ | mysql-bin.000038 | 154 | | mysql | | +------------------+----------+--------------+------------------+-------------------+ 1 row in set (0.00 sec)
step 3
再从slave执行change master
1 2 3
mysql> change master to master_host="192.168.1.136", master_port=3306, master_user="repl",master_password="12345678",master_log_file="mysql-bin.000038",master_log_pos=154 for channel "db136"; mysql> start slave for channel "db136"; mysql> show slave status for channel "db136";
LOW policy tests password length only. Passwords must be at least 8 characters long.
MEDIUM policy adds the conditions that passwords must contain at least 1 numeric character, 1 lowercase and uppercase character, and 1 special (nonalphanumeric) character.
STRONG policy adds the condition that password substrings of length 4 or longer must not match words