RADIUS authentication: Difference between revisions

From MoodleDocs
No edit summary
(update)
Line 1: Line 1:
{{Authentication}}
{{Authentication}}
Location: Settings link in ''Settings > Site administration > Plugins > Authentication > Manage authentication''
{{Note|The RADIUS authentication plugin is no longer a standard plugin in Moodle 3.2 onwards}}
 
==Troubleshooting==


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:
Line 13: Line 13:
==See also==
==See also==


*[http://moodle.org/mod/forum/view.php?id=42 Using Moodle: User authentication] forum
*[http://moodle.org/mod/forum/view.php?id=42 Authentication forum] in Moodle in English
*Using Moodle [http://moodle.org/mod/forum/discuss.php?d=110890#p518884 LDAP / RADIUS / How to get working?] forum discussion
* MDL-55927 - Tracker issue for removing the RADIUS authentication plugin from core
*Using Moodle [http://moodle.org/mod/forum/discuss.php?d=123755 Authentication modules and exchange 2007 - working radius cfg] forum discussion


[[de:RADIUS-Server]]
[[de:RADIUS-Server]]

Revision as of 20:54, 29 November 2016

Note: The RADIUS authentication plugin is no longer a standard plugin in Moodle 3.2 onwards


Troubleshooting

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