We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On Debian, using the sysv init script, I discovered that jicofo failed to start without any output or reason.
To fix the problem, I wrote a new systemd service file which seems to work without a hitch:
[Unit] Description=Jitsi conference Focus After=local-fs.target remote-fs.target Conflicts=shutdown.target [Service] Restart=always EnvironmentFile=/etc/jitsi/jicofo/config User=jicofo WorkingDirectory=/usr/share/jicofo ExecStart=/usr/share/jicofo/jicofo.sh --host=${JICOFO_HOST} --domain=${JICOFO_HOSTNAME} --port=${JICOFO_PORT} --secret=${JICOFO_SECRET} --user_domain=${JICOFO_AUTH_DOMAIN} --user_password=${JICOFO_AUTH_PASSWORD} [Install] WantedBy=multi-user.target
The text was updated successfully, but these errors were encountered:
Yes, It was my problem now, and impossible to know why jicofo exit silently ... "Active: active (exited)"
Your file is to put at : /lib/systemd/system/jicofo_manual.service then: systemctl disable jicofo systemctl enable jicofo_manual
thanks,
Sorry, something went wrong.
I don't think this is relavant anymore. Re-open if necessary.
No branches or pull requests
On Debian, using the sysv init script, I discovered that jicofo failed to start without any output or reason.
To fix the problem, I wrote a new systemd service file which seems to work without a hitch:
The text was updated successfully, but these errors were encountered: