RADIUSdesk

logo

Differences

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

Link to this comparison view

getting_started:12_install_pi_freeradius [2023/11/03 00:48]
admin created
getting_started:12_install_pi_freeradius [2023/11/03 00:56] (current)
admin [Configuring FreeRADIUS version 3.x]
Line 74: Line 74:
 sudo systemctl status freeradius sudo systemctl status freeradius
 </code> </code>
 +===== Fixing a small bug =====
 +  * There is a small bug which prevents FreeRADIUS to start up after a reboot.
 +  * It has been reported here: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=954911
 +  * There also seems to be a fix but it has not reached the Debian repositories as of this writing.
 +  * So here is the fix taken from the discussion in the link.
 +  * Create a file called **/usr/lib/tmpfiles.d/freeradius.conf**.
 +<code bash>
 +sudo vi /usr/lib/tmpfiles.d/freeradius.conf
 +</code>
 +  * Add the following line
 +<code bash>
 +d /run/freeradius 750 freerad freerad -
 +</code>
 +  * If you are curious about what we did, here is a writeup on tmpfiles.d
 +        * https://www.commandlinux.com/man-page/man5/tmpfiles.d.5.html
 +