
solve-question
文章平均质量分 78
爱学网安的小徐
talk is cheap, show me the code 徐景茹
展开
-
超详细使用XShell连接阿里云服务器失败解决方法大全
不过有个疑问,之前阿里云那边设置了安全组是允许端口22访问的,不知道为啥又多出来个防火墙不允许端口22访问,感觉怪怪的。最后重启sshd ,使用命令service sshd restart或者/etc/init.d/ssh restart,然后连接试试看连得上不。建议修改之前备份一下 cp /etc/ssh/ssh_config /etc/ssh/ssh_config.bak。如果发现是安装了防火墙,那么有可能是端口被禁止访问了,因为ssh连接使用的是22端口,所以我们可以用命令。原创 2025-04-25 13:48:41 · 477 阅读 · 0 评论 -
四种解决方案:轻松解决 Node.js 的 Error: error:0308010C:digital envelope routines::unsupported 错误
在Node.js环境中,尤其是在使用最新的Node.js版本时,您可能会遇到 Error: error:0308010C:digital envelope routines::unsupported 错误。这个错误通常与Node.js的加密模块和OpenSSL版本有关。原创 2025-04-16 10:01:58 · 1252 阅读 · 0 评论 -
python 如何安装wxpython
下面我们将详细介绍这些安装wxpython的步骤。原创 2025-04-09 13:01:50 · 704 阅读 · 0 评论 -
python安装whl包时出现的问题解决:is not a supported wheel on this platform _
本人python版本是3.8.0,所以下载所需whl包时,下载的是:Twisted-20.3.0-cp38-cp38-win32.whl,刚开始下载了win_amd64.whl版本的。可以看到,我们下载的whl包,命名不符合python3.8.0的安装支持,将其命名为:Twisted-20.3.0-cp38-cp38m-win32.whl 即可。根据你的Python的版本选择合适的包,名称中间的cp36是python3.6的意思,amd64是python的位数。安装成功,问题成功解决。原创 2024-09-14 10:00:00 · 838 阅读 · 0 评论