Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
install_22_4 [2024/02/08 16:15] – [Install Nginx] system | install_22_4 [2024/09/19 10:20] (current) – [Install MariaDB] system | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | <nav type=" | ||
+ | * [[: | ||
+ | * [[: | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
====== Installation of RADIUSdesk on Ubuntu 22.04 with Nginx ====== | ====== Installation of RADIUSdesk on Ubuntu 22.04 with Nginx ====== | ||
===== Skills required for the installation ===== | ===== Skills required for the installation ===== | ||
Line 166: | Line 173: | ||
</ | </ | ||
- | ==== Modify | + | ==== Change |
- | * Now that the php-fpm service is installed, | + | * Now that the php-fpm service is installed, |
* Edit the default server file: | * Edit the default server file: | ||
<code bash> | <code bash> | ||
Line 179: | Line 186: | ||
* Enable PHP processing by leaving this section uncommented. Note that we are using the UNIX socket and that we are using 8.1 and not 7.4, which was originally specified in the configuration file. | * Enable PHP processing by leaving this section uncommented. Note that we are using the UNIX socket and that we are using 8.1 and not 7.4, which was originally specified in the configuration file. | ||
<code bash> | <code bash> | ||
- | # pass PHP scripts to FastCGI server | + | # Pass PHP scripts to FastCGI server |
# | # | ||
location ~ \.php$ { | location ~ \.php$ { | ||
Line 203: | Line 210: | ||
sudo systemctl reload nginx.service | sudo systemctl reload nginx.service | ||
</ | </ | ||
- | * Create a test //.php// file to confirm that it does work | + | * Create a test //.php// file to confirm that it works. |
<code bash> | <code bash> | ||
sudo vi / | sudo vi / | ||
</ | </ | ||
- | * Contents: | + | * Content: |
<code bash> | <code bash> | ||
<?php | <?php | ||
Line 218: | Line 225: | ||
==== Install MariaDB ==== | ==== Install MariaDB ==== | ||
=== Why MariaDB? === | === Why MariaDB? === | ||
- | * We have found that the version of MySQL that is delivered | + | * We have found that the version of MySQL that is comes by default with Ubuntu 22.04 causes problems with RADIUSdesk. |
* For this reason, we have installed MariaDB as an alternative. | * For this reason, we have installed MariaDB as an alternative. | ||
* MariaDB is an open-source relational database management system that is often used as an alternative to MySQL as the database part of the popular LAMP stack (Linux, Apache, MySQL, PHP/ | * MariaDB is an open-source relational database management system that is often used as an alternative to MySQL as the database part of the popular LAMP stack (Linux, Apache, MySQL, PHP/ | ||
- | * It is intended as a drop-in | + | * It is intended as an immediate |
- | * Make sure to provide a root password for the MariaDB database when asked for it if you are security conscious, otherwise just press the ESC key. | + | * Be sure to provide a root password for the MariaDB database when prompted |
<code bash> | <code bash> | ||
sudo apt-get -y install mariadb-server php8.1-mysql | sudo apt-get -y install mariadb-server php8.1-mysql | ||
Line 230: | Line 238: | ||
</ | </ | ||
- | === Disable | + | === Deactivate |
- | * With Ubuntu 22.04, the bundled version of MariaDB is on version 10.3, which has introduced some strict modes that have some issues with the RADIUSdesk database implementation. | + | * On Ubuntu 22.04, the bundled version of MariaDB is on version 10.3, which has introduced some strict modes that have some issues with the RADIUSdesk database implementation. |
* We will disable the strict SQL mode in MariaDB by creating a new file / | * We will disable the strict SQL mode in MariaDB by creating a new file / | ||
<code bash> | <code bash> | ||
Line 241: | Line 249: | ||
sql_mode=IGNORE_SPACE, | sql_mode=IGNORE_SPACE, | ||
</ | </ | ||
- | | + | === Enable the Event Scheduler === |
+ | * MariaDB and MySQL has a built in Event Scheduler (like CRON for a database) which is disabled by default. | ||
+ | * We make use of this feature to automatically optimize some of the database tables. | ||
+ | * We will enable the Event Scheduler in MariaDB by creating a new file / | ||
+ | <code bash> | ||
+ | sudo vi / | ||
+ | </ | ||
+ | * Enter these two lines: | ||
+ | <code bash> | ||
+ | [mysqld] | ||
+ | event_scheduler=on | ||
+ | </ | ||
+ | | ||
+ | * Restart | ||
<code bash> | <code bash> | ||
sudo systemctl restart mariadb | sudo systemctl restart mariadb | ||
+ | </ | ||
+ | * You can confirm that it is now enabled by checking the following from the SQL terminal: | ||
+ | <code bash> | ||
+ | sudo mysql -u root | ||
+ | MariaDB [(none)]> | ||
+ | +-----------------+-------+ | ||
+ | | Variable_name | ||
+ | +-----------------+-------+ | ||
+ | | event_scheduler | ON | | ||
+ | +-----------------+-------+ | ||
+ | 1 row in set (0.001 sec) | ||
</ | </ | ||
----- | ----- | ||
- | ==== Performance | + | ==== Performance |
- | === Modify | + | === Change the expiry date for certain files === |
- | * Edit the /// | + | * Edit the file /// |
<code bash> | <code bash> | ||
sudo vi / | sudo vi / | ||
</ | </ | ||
- | * Add the following | + | * Add the following |
<code bash> | <code bash> | ||
location ~ ^/ | location ~ ^/ | ||
Line 263: | Line 295: | ||
} | } | ||
</ | </ | ||
- | * Add below only if you require backward compatibility (MESHdesk and APdesk). | + | * Only add the following information |
<code bash> | <code bash> | ||
location ~ ^/ | location ~ ^/ | ||
Line 284: | Line 316: | ||
* RADIUSdesk consists of three components. | * RADIUSdesk consists of three components. | ||
* **rd** directory with its contents contains all the HTML and JavaScript code and is used as the presentation layer. | * **rd** directory with its contents contains all the HTML and JavaScript code and is used as the presentation layer. | ||
- | * **cake4** is a CakePHPv4 application and can be considered the engine room. Here the data is processed before | + | * **cake4** is a CakePHPv4 application and can be considered the engine room. This is where the data is processed before |
- | * **login** is a directory with various login pages which are centrally | + | * **login** is a directory with various login pages that are managed |
- | * Later we will create various symbolic links from locations | + | * Later we will create various symbolic links from locations |
=== Required packages === | === Required packages === | ||
- | * Make sure the following packages are installed. | + | * Make sure that the following packages are installed. |
<code bash> | <code bash> | ||
sudo apt-get -y install php-cli php-mysql php-gd php-curl php-xml php-mbstring php-intl php-sqlite3 git wget | sudo apt-get -y install php-cli php-mysql php-gd php-curl php-xml php-mbstring php-intl php-sqlite3 git wget | ||
Line 299: | Line 331: | ||
sudo git clone https:// | sudo git clone https:// | ||
</ | </ | ||
- | * This will create an **rdcore** directory | + | * |
* It is recommended that you also include the RD Mobile UI. | * It is recommended that you also include the RD Mobile UI. | ||
* Check out the **rd_mobile** git repository. | * Check out the **rd_mobile** git repository. | ||
Line 307: | Line 339: | ||
</ | </ | ||
- | === Create | + | === Create |
* We will create softlinks in the directory where Nginx provides the RADIUSdesk content. | * We will create softlinks in the directory where Nginx provides the RADIUSdesk content. | ||
<code bash> | <code bash> | ||
Line 323: | Line 355: | ||
=== Change ownership === | === Change ownership === | ||
- | * Change the ownership of the following files to www-data so Nginx can make changes to the files/ | + | * Change the ownership of the following files to www-data so that Nginx can make changes to the files/ |
<code bash> | <code bash> | ||
sudo mkdir -p / | sudo mkdir -p / | ||
Line 338: | Line 370: | ||
</ | </ | ||
- | === The Database | + | === The database |
* Make sure that the time zone on the server is set to UTC | * Make sure that the time zone on the server is set to UTC | ||
* Fill the time zone data in the DB | * Fill the time zone data in the DB | ||
<code bash> | <code bash> | ||
- | #NOTE FAILING THIS STEP will break the RADIUS graphs | + | #NOTE FAILING |
- | #There might be some error messages in the output which is fine - no need to be alarmed | + | #Some error messages |
sudo su | sudo su | ||
mysql_tzinfo_to_sql / | mysql_tzinfo_to_sql / | ||
Line 364: | Line 396: | ||
<alert type=" | <alert type=" | ||
* RADIUSdesk is under active development and sometimes we add SQL patches. | * RADIUSdesk is under active development and sometimes we add SQL patches. | ||
- | * The SQL patches are located | + | * The SQL patches are located |
* These patches are non-destructive and you can run them against the database | * These patches are non-destructive and you can run them against the database | ||
- | * See the sample | + | * See the example |
<code bash> | <code bash> | ||
sudo mysql -u root rd < / | sudo mysql -u root rd < / | ||
+ | </ | ||
+ | * Some of these patches may add new columns to existing database tables. In this case, it is recommended to clear the CakePHP models (tables) cache to ensure that the latest changes are also applied there: | ||
+ | <code bash> | ||
+ | sudo su | ||
+ | cd / | ||
+ | rm * | ||
+ | exit | ||
</ | </ | ||
</ | </ | ||
- | |||
=== Configure Nginx === | === Configure Nginx === | ||
- | * Configure Nginx to rewrite some RdCore URLs starting | + | * Configure Nginx to rewrite some RdCore URLs that start with /// |
* Edit /// | * Edit /// | ||
<code bash> | <code bash> | ||
sudo vi / | sudo vi / | ||
</ | </ | ||
- | * Add this once section directly | + | * Insert |
<code bash> | <code bash> | ||
server_name _; | server_name _; | ||
Line 387: | Line 425: | ||
} | } | ||
</ | </ | ||
- | * If you need backward compatibility | + | * If you need support for backward compatibility (MESHdesk and APdesk), add this section |
<code bash> | <code bash> | ||
location / | location / | ||
Line 393: | Line 431: | ||
} | } | ||
</ | </ | ||
- | * Add the following configuration block inside | + | * Insert |
<code bash> | <code bash> | ||
location / | location / | ||
Line 400: | Line 438: | ||
} | } | ||
</ | </ | ||
- | * If you need backward compatibility | + | * If you need support for backward compatibility (MESHdesk and APdesk), add this section |
<code bash> | <code bash> | ||
location / | location / | ||
Line 413: | Line 451: | ||
=== Important URLs === | === Important URLs === | ||
- | * The following URLs are important to reach the UI | + | * The following URLs are important to reach the user interface |
- | * To load the optimized | + | * To load the optimized |
- | * If you want to serve the content directly | + | * If you want to deliver |
<code bash> | <code bash> | ||
sudo cp -R / | sudo cp -R / | ||
Line 421: | Line 459: | ||
* To load the RD Mobile UI, go to http:// | * To load the RD Mobile UI, go to http:// | ||
- | == Login Credentials | + | == Login credentials |
* By default you can log in with the following credentials | * By default you can log in with the following credentials | ||
Username: **root** Password: **admin** | Username: **root** Password: **admin** | ||
Line 436: | Line 474: | ||
===== Add LETSENCRYPT certificate ===== | ===== Add LETSENCRYPT certificate ===== | ||
- | * Instead of repeating the existing documentation, | + | * Instead of repeating the existing documentation, |
- | * You may want to do the following first before following | + | * Before you follow |
<code bash> | <code bash> | ||
sudo apt-get update | sudo apt-get update | ||
Line 445: | Line 482: | ||
* https:// | * https:// | ||
===== Next steps ===== | ===== Next steps ===== | ||
- | * Be sure to also install **FreeRADIUS** | + | * Make sure that you also install **FreeRADIUS**. |
* [[install_22_4_freeradius|Install FreeRADIUS]] | * [[install_22_4_freeradius|Install FreeRADIUS]] |