Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
howto:systemd [2022/06/27 14:03] – [Ubuntu 16.04+] typo nelgin | howto:systemd [2023/04/07 12:28] (current) – Wording digital man | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Start Synchronet BBS from systemd ====== | + | ====== Start, Control, and Monitor |
- | If you run a modern GNU/Linux distribution, | + | If you run a modern GNU/Linux distribution, |
- | In this case, instead of use the old SysV-style / | + | ===== Install ===== |
- | Create and edit (or download from [[http://cvs.synchro.net/ | + | If you've installed Synchronet, you should already have the required |
+ | sbbs/ | ||
+ | |||
+ | Read [[https:// | ||
- | ===== Where is My Service File? ===== | + | - Copy or symlink the '' |
+ | - Enable the BBS service by running: '' | ||
+ | - To run the BBS service without rebooting, run: '' | ||
- | If you are already running Synchronet from systemd but can't remember where the config file is, the following commands | + | Any necessary edits should be made using '' |
+ | / | ||
+ | This will allow you to integrate any future upstream changes to the '' | ||
- | '' | + | After editing |
+ | sudo systemctl daemon-reload | ||
- | Use that service name to return | + | ==== Recommended Tweaks |
+ | To allow core file generation (for crash/ | ||
- | + | < | |
- | ===== Ubuntu 16.04+ ===== | + | LimitCORE=infinity |
- | ''/ | + | |
- | <file> | + | |
- | [Unit] | + | |
- | Description=Synchronet BBS service | + | |
- | Documentation=man: | + | |
- | After=syslog.target network.target | + | |
- | + | ||
- | [Service] | + | |
- | Type=forking | + | |
- | Environment=SBBSROOT=/ | + | |
- | # this stops you running out of files | + | |
- | LimitNOFILE=10000 | + | |
- | # this enables you to take a good core dump | + | |
- | | + | |
- | User=sbbs | + | |
- | Group=sbbs | + | |
- | PermissionsStartOnly=true | + | |
- | ExecStart=/ | + | |
- | ExecReload=/ | + | |
- | Restart=on-failure | + | |
- | RestartSec=30 | + | |
- | + | ||
- | [Install] | + | |
- | WantedBy=multi-user.target | + | |
</ | </ | ||
- | Some points in this config: | + | ==== Where is My Service File? ==== |
- | * **After**. If you are using syslog with sbbs, so it is nice to put that requirement before systemd tries to launch sbbs. | + | |
- | * **Type**. If you are to run SBBS in daemonized mode, the main executable will exit after the daemon is called. This could confuse systemd into thinking the process is finished. If you use "Type=forking" | + | |
- | * **Environment**. In order to avoid having multiple files, you can embed the variables inside the service file. | + | |
- | * **User/ | + | |
- | * **PermissionsStartOnly**. This one tells systemd to execute ExecStartPre as root, but ExecStart as the user and group declared in User, | + | |
- | * **ExecStart**. If you don't want to get syslog entries duplicated you will have to run SBBS in daemonized mode, so the " | + | |
- | * **RestartSec**. It's advisable to wait some secs before attempting restarting in case of failure, just to give some time for binding release. | + | |
- | Installation instructions: | + | If you are already running Synchronet from systemd but can' |
- | -Modify the environment variables to match your SBBS setup | + | |
- | -Modify User and Group. | + | |
- | -Modify the ExecStart and ExecStartPre paths to match your Synchronet setup. | + | |
- | -Place this file in the correct location. For Ubuntu 16.04 you should place it in / | + | |
- | -Enable the service with " | + | |
- | -To run the service without restarting " | + | |
- | Running //systemctl | + | |
- | ● sbbs.service - Synchronet BBS service | + | |
- | | + | ===== Control ===== |
- | Active: active (running) since Thu 2016-12-15 20:20:43 CET; 16s ago | + | |
- | Docs: man:sbbs | + | To start the Synchronet service |
- | | + | |
- | | + | |
- | Tasks: 11 | + | To restart (stop and then start) the Synchronet |
- | | + | |
- | CPU: 223ms | + | |
- | CGroup: / | + | |
- | | + | |
| | ||
- | Dec 15 20:23:25 HISPAMSX sbbs[1226]: term Node 1 Telnet | + | To stop the Synchronet service |
- | | + | |
- | | + | |
- | Dec 15 20:24:02 HISPAMSX sbbs[1226]: term Node 1 disconnected | + | ===== Monitor ===== |
- | Dec 11 20:24:03 HISPAMSX sbbs[1226]: term Node 1 thread terminated (0 node threads remain, 71 clients served) | + | |
- | **NOTE**:\\ | + | Display the current Synchronet service status: |
- | If you're running any kind of recent (last 2yrs+) systemd, to avoid the use of '' | + | |
- | ===== Monitoring with Byobu (Tmux backend) | + | |
+ | Watch the current Synchronet service status in real-time: | ||
+ | watch systemctl status sbbs | ||
+ | |||
+ | Read/search the log output | ||
+ | journalctl | ||
+ | |||
+ | Watch the log output | ||
+ | journalctl -f -u sbbs | ||
+ | |||
+ | ==== Monitoring with Byobu (Tmux backend) ==== | ||
You can have a text mode dashboard for monitoring and configuring your BBS realtime by using Byobu with Tmux or GNU Screen backends. If you are using the Tmux backend. The following configuration splits your screen in three panes: one for SBBS log, other for UMONITOR and a last one for SCFG. Please note that this configuration assumes SBBSCTRL variable is set and that access permissions to the needed files are set for the current user. | You can have a text mode dashboard for monitoring and configuring your BBS realtime by using Byobu with Tmux or GNU Screen backends. If you are using the Tmux backend. The following configuration splits your screen in three panes: one for SBBS log, other for UMONITOR and a last one for SCFG. Please note that this configuration assumes SBBSCTRL variable is set and that access permissions to the needed files are set for the current user. | ||
Line 111: | Line 89: | ||
{{: | {{: | ||
- | ===== Debian & CentOS 7 ===== | ||
- | / | + | ==== Debian (alternative using tmux) ==== |
- | SBBSCTRL=/ | + | |
- | + | ||
- | / | + | |
- | [Unit] | + | |
- | Description=Synchronet BBS | + | |
- | Documentation=man: | + | |
- | After=network.target | + | |
- | + | ||
- | [Service] | + | |
- | Restart=on-failure | + | |
- | EnvironmentFile=-/ | + | |
- | ExecStart=/ | + | |
- | ExecReload=/ | + | |
- | User=root | + | |
- | Group=root | + | |
- | + | ||
- | [Install] | + | |
- | WantedBy=multi-user.target | + | |
- | + | ||
- | + | ||
- | Finally, you must execute //systemd daemon-reload// | + | |
- | + | ||
- | Test your setup: | + | |
- | + | ||
- | # systemctl status sbbs | + | |
- | ● sbbs.service - Synchronet BBS | + | |
- | | + | |
- | | + | |
- | Docs: man:sbbs | + | |
- | Process: 14393 ExecStart=/ | + | |
- | Main PID: 14393 (sbbs) | + | |
- | | + | |
- | | + | |
- | + | ||
- | nov 21 14:39:53 scarlet systemd[1]: Started Synchronet BBS. | + | |
- | + | ||
- | + | ||
- | ===== Debian (alternative using tmux) ===== | + | |
You can use [[https:// | You can use [[https:// | ||
Line 182: | Line 121: | ||
{{: | {{: | ||
- | |||
- | ===== Recommended Tweaks to the Service Section === | ||
- | Add these to the '' | ||
- | |||
- | To increase the open file limit: | ||
- | <file sbbs.service> | ||
- | LimitNOFILE=10000 | ||
- | </ | ||
- | |||
- | To allow core file generation (for crash/ | ||
- | <file sbbs.service> | ||
- | LimitCORE=infinity | ||
- | </ | ||
===== See Also ===== | ===== See Also ===== | ||
* [[: | * [[: | ||
+ | * [[https:// | ||
* [[https:// | * [[https:// | ||
{{tag> | {{tag> | ||