ONLYOFFICE Developer Edition演示问题-错误下载文件

时间:2020-07-07 14:14:30

标签: onlyoffice

我使用以下命令在本地Windows计算机上安装并运行OnlyOffice docker映像:

docker run -i -t -d -p 9950:80 --restart=always -v C:/work/only_office/logs:/var/log/onlyoffice onlyoffice/documentserver-de

然后运行此页面上描述的命令-http:// localhost:9950 / welcome /以测试OnlyOffilce:

docker exec 2a9aa47c18a2 sudo supervisorctl start ds:example
docker exec 2a9aa47c18a2 sudo sed "s,autostart=false,autostart=true," -i /etc/supervisor/conf.d/ds-example.conf

此页面-http:// localhost:9950 / example /开始工作。但是,当我尝试创建,打开或上传文档时,出现此错误:
enter image description here 以及日志文件中的错误:

[2020-07-07T12:30:24.892] [ERROR] nodeJS - error downloadFile:url=http://127.0.0.1:9950/example/files/172.17.0.1/new%20(2).docx;attempt=1;code:ECONNREFUSED;connect:null;(id=172.17.0.1http___127.0.0.1_9950_example_files_172.17.0.1_new_20_2_.docx1594125018845)
Error: connect ECONNREFUSED 127.0.0.1:9950
    at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14)
[2020-07-07T12:30:25.894] [ERROR] nodeJS - error downloadFile:url=http://127.0.0.1:9950/example/files/172.17.0.1/new%20(2).docx;attempt=2;code:ECONNREFUSED;connect:null;(id=172.17.0.1http___127.0.0.1_9950_example_files_172.17.0.1_new_20_2_.docx1594125018845)
Error: connect ECONNREFUSED 127.0.0.1:9950
    at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14)
[2020-07-07T12:30:26.897] [ERROR] nodeJS - error downloadFile:url=http://127.0.0.1:9950/example/files/172.17.0.1/new%20(2).docx;attempt=3;code:ECONNREFUSED;connect:null;(id=172.17.0.1http___127.0.0.1_9950_example_files_172.17.0.1_new_20_2_.docx1594125018845)
Error: connect ECONNREFUSED 127.0.0.1:9950
    at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14)

[2020-07-07T12:30:24.881] [ERROR] nodeJS - postData error: docId = 172.17.0.1http___127.0.0.1_9950_example_files_172.17.0.1_new_20_2_.docx1594125018845;url = http://127.0.0.1:9950/example/track?filename=new%20(2).docx&useraddress=172.17.0.1;data = {"key":"172.17.0.1http___127.0.0.1_9950_example_files_172.17.0.1_new_20_2_.docx1594125018845","status":1,"users":["uid-1"],"actions":[{"type":1,"userid":"uid-1"}]}
Error: connect ECONNREFUSED 127.0.0.1:9950
    at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14)

我试图关闭防火墙并在另一台Windows PC上进行测试,但是问题是相同的。有任何解决方法的想法吗?

3 个答案:

答案 0 :(得分:1)

检查此一项。似乎您正在使用的端口上正在运行某些进程。尝试切换端口。

参考:

“服务器错误拒绝ECONNREFUSED连接,这是Filezilla FTP客户端返回的常见错误。此错误表明用户正在尝试连接到服务器,但无法连接到端口。”

https://community.progress.com/s/article/Connection-Error-ECONNREFUSED-Connection-refused-by-the-server

ECONNREFUSED on running localhost server from NodeJS

Node.js Error: connect ECONNREFUSED

答案 1 :(得分:1)

我遇到了同样的问题,在尝试了一段时间后,我只是尝试按照文档进行操作并且它起作用了,您必须在端口 80 中运行 docker 映像,这将解决错误。

docker run -i -t -d -p 80:80 --restart=always -v C:/work/only_office/logs:/var/log/onlyoffice onlyoffice/documentserver-de

我正在寻找以正确的方式更改端口。如果你知道,请告诉我。

答案 2 :(得分:0)

根据支持人员的回答,OnlyOffice的当前最新版本(5.5.3)在Windows docker上不起作用:

很遗憾,目前我们不建议您使用这种方法 安装文档服务器。如果您想使用码头工人 安装,请在以下位置使用此Document Server安装guide * NIX 系统。

我在CentOs服务器上运行docker映像。现在一切都按预期进行。