英文:
How to solve Error 13 ERR_BIND_SOCKET agora.io on premise recording SDK Record by API
问题
我在Ubuntu 18.04上尝试了命令行来运行SDK,它完美地运行了。我想将SDK集成到Intellij IDEA上的一个web项目中,这样我就可以通过API调用来运行SDK。但是我遇到了以下错误:log
根据声网的文档,它说:doc
有人能解释一下为什么会出现这个错误吗?谢谢
英文:
I tried the the command line to run the SDK on Ubuntu 18.04. It worked perfectly. I want integrate the sdk into a web project on Intellij IDEA So I could run the SDK by API Calls. But I got the following error : log
From the agora documentation it said that: doc
Could someone explain why this error occurs? Thank you
答案1
得分: 0
我解决了这个错误,在生成 agora.node 后,您必须在项目目录上赋予 777 权限,仅此而已。
英文:
i resolved the error, after generating the agora.node you must give permission 777 on the directory of the project is only that
答案2
得分: 0
我已成功解决了这个问题。前往您正在录制的目录。那里将会有一个名为 recording_sys.log
的文件。在这个日志文件的末尾(实际上是倒数第二行),它会显示无法执行二进制文件。二进制文件的路径也会被提及。只需为此二进制文件添加执行权限(chmod +x /path/to/binary
),问题将会得到解决。
编辑:这个二进制文件的名称是 AgoraCoreService
。
英文:
I successfully solved this issue. Go to the directory that you are recording to. There will be a file called recording_sys.log
. At the end of this log file (last but 1 line actually) it said failed to execute a binary file. The path of the binary file is also mentioned. Just add execute permission (chmod +x /path/to/binary
) for this binary file and the issue will resolve.
Edit: The name of this binary file is AgoraCoreService
专注分享java语言的经验与见解,让所有开发者获益!
评论