ILIAS-7-Install-Tutorial for Ubuntu 20.04

Config-Files

Change Client-Settings (MySQL-Passoword etc.)

  • If you want to change some settings, like MySQL user or password, you find these infos in the file client.ini.php: nano /var/www/html/ilias/data/nurderhsv/client.ini.php

Change ILIAS-Settings by configfile

  • The ILIAS main configfile can be found in the ILIAS-root: nano /var/www/html/ilias/ilias.ini.php

Configure a redirect to ILIAS

When people call your domain you may want to redirect them directely to ILIAS:
  • nano /var/www/html/index.php
  • Put these lines in and change them so that it fits to your installation:
1
2
3
4
<?php
$url = 'https://'.$_SERVER['SERVER_NAME'].'/ilias/login.php?target=&client_id=nurderhsv&cmd=force_login&lang=de';
header('Location:'. $url);
?>
  • Adjust right settings:
    • chown -R www-data:www-data /var/www/html
    • chown -R www-data:www-data /opt/iliasdata
    • chmod -R 775 /var/www/html/ilias
    • chmod -R 770 /opt/iliasdata
  • Delete the existing index file (hello world): rm /var/www/html/index.html
  • Call your URL in a Browser


No comment has been posted yet.