Synchronet v3.19b-Win32 (install) has been released (Jan-2022).

You can donate to the Synchronet project using PayPal.

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
service:ircd [2020/11/13 21:25] – [Using JSexec to run the IRCd] with systemd mlongservice:ircd [2020/11/13 22:12] – [Using JSexec with systemd] A includes S mlong
Line 116: Line 116:
 ====== Using JSexec with systemd ====== ====== Using JSexec with systemd ======
  
-Create a file /etc/systemd/system/ircd.service containing:+Create a file /etc/systemd/system/ircd.service containing (for logging to a logfile):
 <code> <code>
 [Unit] [Unit]
Line 129: Line 129:
   StandardOutput=file:/sbbs/data/logs/ircd.log   StandardOutput=file:/sbbs/data/logs/ircd.log
   StandardError=file:/sbbs/data/logs/ircd.err   StandardError=file:/sbbs/data/logs/ircd.err
-  ExecStart=/sbbs/exec/jsexec -A -S -l /sbbs/exec/ircd.js+  ExecStart=/sbbs/exec/jsexec -A -l /sbbs/exec/ircd.js
  
 [Install] [Install]
   WantedBy=default.target   WantedBy=default.target
 </code> </code>
 +
 +Or for logging using syslog:
 +<code>
 +[Unit]
 +  Description=Synchronet BBS IRCD
 +  After=syslog.target network.target
 +
 +[Service]
 +  Type=simple
 +  Environment=SBBSROOT=/sbbs SBBSCTRL=/sbbs/ctrl SBBSEXEC=/sbbs/exec/
 +  User=sbbs
 +  Group=sbbs
 +  ExecStart=/sbbs/exec/jsexec -d -l /sbbs/exec/ircd.js
 +
 +[Install]
 +  WantedBy=default.target
 +</code>
 +
  
 Then run: Then run: