Note: You are currently viewing documentation for Moodle 3.6. Up-to-date documentation for the latest stable version of Moodle is likely available here: RADIUS authentication.

RADIUS authentication: Difference between revisions

From MoodleDocs
No edit summary
m (not a stub)
Line 9: Line 9:
##Add the following line to your php.ini file<pre>extension=radius.so</pre>
##Add the following line to your php.ini file<pre>extension=radius.so</pre>
##Restart apache services<pre>sudo /etc/init.d/apache2 restart</pre>
##Restart apache services<pre>sudo /etc/init.d/apache2 restart</pre>
{{stub}}


==See also==
==See also==

Revision as of 17:00, 5 May 2010

Location: Settings link in Administration > Users > Authentication


If you get an error message saying: "Warning: The Auth_RADIUS module does not seem to be present", you need to follow these steps:

  1. On Moodle 1.9.x using debian-based linux (such as Ubuntu):
    1. Install the following modules: php5-dev php5-auth-pam php5-radius php-pear
      sudo apt-get install php5-dev php5-auth-pam php5-radius php-pear
    2. Install Auth_RADIUS module for pear
      sudo pear install radius Auth_RADIUS
    3. Add the following line to your php.ini file
      extension=radius.so
    4. Restart apache services
      sudo /etc/init.d/apache2 restart

See also