ftp相关的包不需要安装,python自带 # -*- coding:utf-8 -*- from ftplib import FTP def upload(f, remote_path, local_path): fp = open(local_path, "rb") buf_size = 102 ...
分类:
编程语言 时间:
2020-12-29 11:28:50
阅读次数:
0
nginx启动报错:80端口被占用bind() to 0.0.0.0:80 failed (98: Address already in use) 解决: fuser -k 80/tcp 杀掉进程 重新启动nginx /usr/servers/nginx/sbin/nginx -s reload ...
分类:
其他好文 时间:
2020-12-28 11:55:14
阅读次数:
0
问题:当手机上安装好Autojs app,连接电脑端vscode 时报错:failed to connect to 192.168.2.8:9317 总是连接失败。 解决方法:手机打开热点共享,让电脑连接手机共享的wifi热点。然后在电脑上cmd窗口输入:ipconfig 查看当前电脑的ip。vsc ...
分类:
Web程序 时间:
2020-12-28 11:01:12
阅读次数:
0
nginx -s reload 有时候重新加载配置文件没有生效 检查/var/log/nginx/error.log [notice] 29410#0: signal process started [emerg] 2999#0: bind() to 0.0.0.0:9091 failed (13: ...
分类:
其他好文 时间:
2020-12-28 10:54:15
阅读次数:
0
1.MappedFile类属性说明 dubbo的核心是spi,看懂了spi那么duboo基本上也懂了,对于rmq来说,它的核心是broker,而broker的核心是commitlog、consumequeue、indexfile,而这些文件对应的最终都是MappedFile,那么搞明白了这个类,那么 ...
分类:
移动开发 时间:
2020-12-25 11:51:42
阅读次数:
0
1. 问题描述: pycharm安装第三方库时提示CondaHTTPError: HTTP 000 CONNECTION FAILED。 2. 错误原因:默认镜像源访问速度过慢,会导致超时从而导致更新和下载失败。 3. 解决方案:更换镜像源为清华镜像源,并且删除默认镜像源。 3.1.首先执行如下几条 ...
分类:
Web程序 时间:
2020-12-24 11:51:21
阅读次数:
0
上传jar文件 mvn deploy:deploy-file -Dfile={file} -DrepositoryId={repositoryId} -Durl={url} -DpomFile={pom} -Dpackaging=jar eg: mvn deploy:deploy-file -Dfi ...
分类:
编程语言 时间:
2020-12-24 11:46:44
阅读次数:
0
在使用SpringMVC实现跨服务器的方式上传文件 1. 出现405错误: Request processing failed; nested exception is com.sun.jersey.api.client.UniformInterfaceException: PUT http://l ...
分类:
编程语言 时间:
2020-12-21 12:13:51
阅读次数:
0
1. pydot` failed to call GraphViz. 首先去下载这个 。https://blog.csdn.net/shangxiaqiusuo1/article/details/85283432(下载包这个博客里面有飞机票) 2。参照上面那个博客的顺序去把GraphViz,pydo ...
分类:
其他好文 时间:
2020-12-21 12:05:44
阅读次数:
0
首先要搭建php+Mysql环境,我这里是用的XAMPP集成环境,可百度自行下载。 下载Upload-Labs,github项目地址:https://github.com/c0ny1/upload-labs 解压到php环境下根目录:htdocs下 在浏览器中直接输入地址:http://127.0. ...
分类:
其他好文 时间:
2020-12-21 12:04:51
阅读次数:
0