'docker0' already bound to a zone解决
摘要:$ sudo firewall-cmd --permanent --zone=docker --change-interface=docker0 //permanent表示永久性写入 $ sudo systemctl restart firewalld
阅读全文
export 特殊字符转义
摘要:\ 需转义为 \\ } 需转义为 \} [ 需转义为 \[ $ 需转义为 \$ ` 需转义为 \` " 需转义为 \" = 需转义为\=
阅读全文
window Defender关闭和开启
摘要:1.在桌面左下角搜索框输入cmd,以管理员身份运行命令提示符。 2.输入以下命令,回车后重启。 reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /d 1
阅读全文
Git合并冲突——both modified解决
摘要:git mergetool 参考地址:https://blog.csdn.net/wawawakaokao/article/details/124331696
阅读全文
openssl证书常用命令
摘要:#转换crt证书到pem openssl x509 -in 1_abc.com_bundle.crt -out abc.com_cer.pem -outform PEM #转换证书key到pem openssl rsa -in 2_abc.com.key -out 2_abc.com_pri.pem
阅读全文