我无法使用以下命令安装 Yate:svn checkout -r 5968 http://voip.null.ro/svn/yate/trunk yate 当我在 svn 中输入上述命令时出现以下错误:E170013:无法
我无法使用以下命令来安装 Yate:
svn checkout -r 5968 http://voip.null.ro/svn/yate/trunk yate
当我输入上述命令时出现以下错误:
svn: E170013: Unable to connect to a repository at URL 'http://voip.null.ro/svn/yate/trunk'
svn: E000111: Error running context: Connection refused
我输入时遇到同样的错误
svn checkout -r 5968 http://voip.null.ro/svn/yate/trunk yatebts
在 YateBTS 网站上,这是正确的命令。怎么回事?为什么它不起作用?有解决办法吗?需要注意的是,我目前正在运行 Ubuntu 18.04,因为我将 Yate 与 USRP N210 一起使用,所以我正在尝试安装旧版本,这也需要旧版本的 Ubuntu。
我尝试打开 5968 端口,但没有成功。有东西告诉我网站已关闭,我不知道如何修复。
我已经在 ubuntu 机器上部署了 django 应用程序,但是由于 gunicorn.service 中的错误(它找不到我写的工作目录),它无法工作。我的工作目录在 /home/ubunut/project.gun...
我已经在 ubuntu 机器上部署了 django 应用程序,但是由于错误 gunicorn.service
(找不到我写的工作目录)它无法工作。我的工作目录在 /home/ubunut/project
. gunicorn.service
:
[Unit]
Description=gunicorn daemon
Requires=gunicorn.socket
After=network.target
[Service]
User=root
Group=www-data
WorkingDirectory=/home/ubuntu/project
ExecStart=/home/ubuntu/project/env/bin/gunicorn --workers 3 --bind unix:/run/gunicorn.sock project.wsgi:application
[Install]
WantedBy=multi-user.target
我进入了 nginx
日志:
2024/07/01 11:04:08 [error] 1906#1906: *23 connect() to unix:/run/gunicorn.sock failed (111: Connection refused) while connecting to upstream, client: myipaddress, server: ipaddress, request: "GET /en/ HTTP/1.1", upstream: "http://unix:/run/gunicorn.sock:/en/", host: "ipaddress"
因此我输入了以下 sudo journalctl -u gunicorn.service -f
内容来实时查看日志:
Jul 01 11:29:17 landingpage (gunicorn)[2472]: gunicorn.service: Changing to the requested working directory failed: No such file or directory
Jul 01 11:29:17 landingpage systemd[1]: gunicorn.service: Main process exited, code=exited, status=200/CHDIR
Jul 01 11:29:17 landingpage systemd[1]: gunicorn.service: Failed with result 'exit-code'.
Jul 01 11:29:17 landingpage systemd[1]: gunicorn.service: Start request repeated too quickly.
Jul 01 11:29:17 landingpage systemd[1]: gunicorn.service: Failed with result 'exit-code'.
Jul 01 11:29:17 landingpage systemd[1]: Failed to start gunicorn.service - gunicorn daemon.
我尝试进入项目根目录并使用 pwd
命令复制路径,检查了所有权限。仍然不起作用。如何修复 gunicorn?