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/03/04 11:53] nelginservice:ircd [2020/11/13 21:25] – [Using JSexec to run the IRCd] with systemd mlong
Line 114: Line 114:
 The above command is typed from within the Synchronet 'exec' directory. All console commands and errors are logged to the terminal that JSexec was started from.  You should see the standard IRCd startup messages, which means that the IRCd is now operational through JSexec.  Connecting to the IRCd should now work as per normal. The above command is typed from within the Synchronet 'exec' directory. All console commands and errors are logged to the terminal that JSexec was started from.  You should see the standard IRCd startup messages, which means that the IRCd is now operational through JSexec.  Connecting to the IRCd should now work as per normal.
  
 +====== Using JSexec with systemd ======
 +
 +Create a file /etc/systemd/system/ircd.service containing:
 +<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
 +  StandardOutput=file:/sbbs/data/logs/ircd.log
 +  StandardError=file:/sbbs/data/logs/ircd.err
 +  ExecStart=/sbbs/exec/jsexec -A -S -l /sbbs/exec/ircd.js
 +
 +[Install]
 +  WantedBy=default.target
 +</code>
 +
 +Then run:
 +systemctl enable ircd
 +systemctl daemon-reload
 +systemctl start ircd
 ====== About the Synchronet IRC Network (irc.synchro.net) ====== ====== About the Synchronet IRC Network (irc.synchro.net) ======
  
Line 244: Line 269:
     would execute the command like this: '/OPER Sysop <syspass>'.     would execute the command like this: '/OPER Sysop <syspass>'.
     Also check out the O:Line section in ircd.conf.     Also check out the O:Line section in ircd.conf.
 +
 + Q: My ipv6 O:Line isn't working even if I surround the address with
 +    square brackets.
 +        
 + A: You need to enclose the whole netmask within the square brackets. Do
 +    include leading zeros in the netmask. It should match your /whois netmask.
 +    For example:
 +    [~jsmith@2001:440:1fff:b0:99d2:3cde:43e7:c96]
  
  Q: I've been forced off of the server with a "Terminated." message.  Q: I've been forced off of the server with a "Terminated." message.
Line 299: Line 332:
     banter among long-standing IRC users.     banter among long-standing IRC users.
  
- Q: My ipv6 O:Line isn't working even if I surround the address with +
-    square brackets. +
-         +
- A: You need to enclose the whole netmask within the square brackets. Do +
-    include leading zeros in the netmask. It should match your /whois netmask. +
-    For example: +
-    [~jsmith@2001:440:1fff:b0:99d2:3cde:43e7:c96] +
-            +
-      +
  
 ===== See Also ===== ===== See Also =====