核心配置一句话就是:把本地的公钥(.ssh/id_xxxx.pub)存入远程Linux主机的信任列表(.ssh/authorized_keys)
2022年03月26日
核心配置一句话就是:把本地的公钥(.ssh/id_xxxx.pub)存入远程Linux主机的信任列表(.ssh/authorized_keys)
2022年03月25日
nginx 不支持 if 嵌套,也不允许在 if 中使用逻辑判断,会报如下错误:
nginx: [emerg] "if" directive is not allowed
当业务需要多个条件判断时,可以借助中间变量来实现
2022年03月25日
mysql数据库密码策略问题异常信息:
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
2022年03月25日
python默认的pip源在国外,如果下载比较大的第三方库时可能会非常非常慢,甚至会报错,所以为了有一个更加友好的python使用体验,建议为python的pip换一下源。
2022年03月22日
解决方案:https://blog.csdn.net/hai1124948893/article/details/107297582/
2022年03月17日
node_modules一般有很多碎文件,删除的时候很慢,在linux下可以使用rm -rf node_modules来快速删除文件夹,在windows也有类似命令。
在你的项目目录下打开cmd ,使用rd /s /q node_modules可以快速删除
如果是powershell,使用rd -r node_modules命令