RADIUS authentication: Difference between revisions

From MoodleDocs
No edit summary
(removing page notes link)
Line 1: Line 1:
{{Authentication}}
{{Authentication}}
<p class="note">'''Please refer to [[TOC_with_notes#Authentication|these notes]] before editing this page.'''</p>
Location: Settings link in ''Settings > Site administration > Plugins > Authentication > Manage authentication''
Location: Settings link in ''Administration > Plugins > Authentication > Manage authentication'' in 2.0 onwards or ''Administration > Users > Authentication > Manage authentication'' in 1.9




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


#On Moodle 1.9.x using debian-based linux (such as Ubuntu):
Using debian-based linux (such as Ubuntu):
##Install the following modules: php5-dev php5-auth-pam php5-radius php-pear <pre>sudo apt-get install php5-dev php5-auth-pam php5-radius php-pear</pre>
#Install the following modules: php5-dev php5-auth-pam php5-radius php-pear <pre>sudo apt-get install php5-dev php5-auth-pam php5-radius php-pear</pre>
##Install Auth_RADIUS module for pear<pre>sudo pear install radius Auth_RADIUS</pre>
#Install Auth_RADIUS module for pear<pre>sudo pear install radius Auth_RADIUS</pre>
##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>


==See also==
==See also==
Line 17: Line 16:
*Using Moodle [http://moodle.org/mod/forum/discuss.php?d=110890#p518884 LDAP / RADIUS / How to get working?] forum discussion
*Using Moodle [http://moodle.org/mod/forum/discuss.php?d=110890#p518884 LDAP / RADIUS / How to get working?] forum discussion
*Using Moodle [http://moodle.org/mod/forum/discuss.php?d=123755 Authentication modules and exchange 2007 - working radius cfg] forum discussion
*Using Moodle [http://moodle.org/mod/forum/discuss.php?d=123755 Authentication modules and exchange 2007 - working radius cfg] forum discussion
[[Category:Authentication]]


[[de:Authentifizierung über einen RADIUS-Server]]
[[de:Authentifizierung über einen RADIUS-Server]]

Revision as of 07:50, 3 September 2011

Location: Settings link in Settings > Site administration > Plugins > Authentication > Manage 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:

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