You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _docs/helpers/choose-alma.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,13 +4,13 @@ type: docs
4
4
permalink: /docs/helpers/choose-alma/
5
5
redirect_from:
6
6
- /theme-setup/
7
-
last_modified_at: 2023-02-02
7
+
last_modified_at: 2026-04-09
8
8
last_modified_by: Mohammad_Asif
9
9
toc: true
10
10
title: Installing Faveo on Alma Linux
11
11
---
12
12
13
-
<imgalt="Alma Linux Logo"src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/AlmaLinux_Icon_Logo.svg/1024px-AlmaLinux_Icon_Logo.svg.png?20211201021832"width="150" />
13
+
<imgalt="Alma Linux Logo"src="https://upload.wikimedia.org/wikipedia/commons/0/0e/Almalinux_logo.png"width="150" />
14
14
15
15
Faveo can run on [Alma Linux](https://almalinux.org/).
Copy file name to clipboardExpand all lines: _docs/helpers/choose-rocky.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,13 +4,13 @@ type: docs
4
4
permalink: /docs/helpers/choose-rocky/
5
5
redirect_from:
6
6
- /theme-setup/
7
-
last_modified_at: 2023-02-02
7
+
last_modified_at: 2026-04-09
8
8
last_modified_by: Mohammad_Asif
9
9
toc: true
10
10
title: Installing Faveo on Rocky Linux
11
11
---
12
12
13
-
<imgalt="Rocky OS Logo"src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Rocky_Linux_wordmark.svg/800px-Rocky_Linux_wordmark.svg.png"width="200" />
13
+
<imgalt="Rocky OS Logo"src="https://upload.wikimedia.org/wikipedia/commons/9/9c/Rocky_Linux_wordmark.svg"width="200" />
14
14
15
15
Faveo can run on [Rocky](https://rockylinux.org/download/).
title: Installing Faveo Helpdesk Community Edition on Alma Linux with Apache Webserver
11
11
---
12
12
13
-
<imgalt="Alma Linux Logo"src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/AlmaLinux_Icon_Logo.svg/1024px-AlmaLinux_Icon_Logo.svg.png?20211201021832"width="200" />
13
+
<imgalt="Alma Linux Logo"src="https://upload.wikimedia.org/wikipedia/commons/0/0e/Almalinux_logo.png"width="200" />
14
14
15
15
Faveo can run on [Alma Linux](https://almalinux.org/).
title: Installing Faveo Helpdesk Community Edition on Alma Linux with Nginx Webserver
11
11
---
12
12
13
-
<imgalt="Alma Linux Logo"src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/AlmaLinux_Icon_Logo.svg/1024px-AlmaLinux_Icon_Logo.svg.png?20211201021832"width="200" />
13
+
<imgalt="Alma Linux Logo"src="https://upload.wikimedia.org/wikipedia/commons/0/0e/Almalinux_logo.png"width="200" />
14
14
15
15
Faveo can run on [Alma Linux](https://almalinux.org/).
title: Installing Faveo Helpdesk Community Edition on Rocky OS with Apache Webserver
11
11
---
12
12
13
-
<imgalt="Rocky OS Logo"src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Rocky_Linux_wordmark.svg/800px-Rocky_Linux_wordmark.svg.png"width="200" />
13
+
<imgalt="Rocky OS Logo"src="https://upload.wikimedia.org/wikipedia/commons/9/9c/Rocky_Linux_wordmark.svg"width="200" />
14
14
15
15
Faveo can run on [Rocky](https://rockylinux.org/download/).
title: Installing Faveo Helpdesk Community Edition on Rocky OS With Nginx Webserver
11
11
---
12
12
13
-
<imgalt="Rocky OS Logo"src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Rocky_Linux_wordmark.svg/800px-Rocky_Linux_wordmark.svg.png"width="200" />
13
+
<imgalt="Rocky OS Logo"src="https://upload.wikimedia.org/wikipedia/commons/9/9c/Rocky_Linux_wordmark.svg"width="200" />
14
14
15
15
Faveo can run on [Rocky](https://rockylinux.org/download/).
@@ -136,32 +133,41 @@ sed -i '2 a zend_extension = "/usr/lib/php/'replaceyourpath'/ioncube_loader_lin_
136
133
systemctl restart apache2
137
134
```
138
135
139
-
<b>2.c. Mysql</b>
136
+
<b>2.c. Install MySQL/MariaDB</b>
140
137
141
138
The official Faveo installation uses Mysql/MariaDB as the database system and **this is the only official system we support**. While Laravel technically supports PostgreSQL and SQLite, we can't guarantee that it will work fine with Faveo as we've never tested it. Feel free to read [Laravel's documentation](https://laravel.com/docs/database#configuration) on that topic if you feel adventurous.
142
139
143
-
Install Mysql 8.0 or MariaDB 10.6. Note that this only installs the package, but does not setup Mysql. This is done later in the instructions:
140
+
You can install either MySQL or MariaDB. We have given options for both MySQL and MariaDB below.
144
141
145
-
<b> For Ubuntu 20.04 </b>
142
+
<b>2.c.1. MySQL 8.0</b>
143
+
144
+
Install Mysql 8.0. Note that this only installs the package, but does not setup Mysql. This is done later in the instructions:
echo'deb [signed-by=/usr/share/keyrings/mysql.gpg] http://repo.mysql.com/apt/ubuntu focal mysql-8.0'| sudo tee -a /etc/apt/sources.list.d/mysql.list
151
-
echo'deb-src [signed-by=/usr/share/keyrings/mysql.gpg] http://repo.mysql.com/apt/ubuntu focal mysql-8.0'| sudo tee -a /etc/apt/sources.list.d/mysql.list
152
147
sudo apt update
153
-
sudo apt install mysql-community-server -y
148
+
sudo apt install mysql-server
154
149
sudo systemctl start mysql
155
150
sudo systemctl enable mysql
156
151
```
157
-
<b> For Ubuntu 22.04 </b>
158
152
153
+
154
+
Secure your MySql installation by executing the below command. Set Password for mysql root user, remove anonymous users, disallow remote root login, remove the test databases and finally reload the privilege tables.
155
+
```sh
156
+
mysql_secure_installation
159
157
```
158
+
159
+
<b>2.c.2.MariaDB 10.6</b>
160
+
161
+
Install MariaDB 10.6. Note that this only installs the package, but does not setup Mysql. This is done later in the instructions:
162
+
163
+
164
+
```sh
160
165
sudo apt update
161
166
sudo apt install mariadb-server mariadb-client -y
162
167
sudo systemctl start mariadb
163
168
sudo systemctl enable mariadb
164
169
```
170
+
> NOTE: Ubuntu 24.04 doesn't officially support MariaDb 10.6, so only MySQL 8.0 can be installed for Ubuntu 22.04
165
171
166
172
Secure your MySql installation by executing the below command. Set Password for mysql root user, remove anonymous users, disallow remote root login, remove the test databases and finally reload the privilege tables.
167
173
```sh
@@ -175,12 +181,6 @@ Wkhtmltopdf is an open source simple and much effective command-line shell utili
175
181
176
182
It uses WebKit rendering layout engine to convert HTML pages to PDF document without losing the quality of the pages. Its is really very useful and trustworthy solution for creating and storing snapshots of web pages in real-time.
The official Faveo installation uses Mysql/MariaDB as the database system and **this is the only official system we support**. While Laravel technically supports PostgreSQL and SQLite, we can't guarantee that it will work fine with Faveo as we've never tested it. Feel free to read [Laravel's documentation](https://laravel.com/docs/database#configuration) on that topic if you feel adventurous.
133
131
134
-
Install Mysql 8.0 or MariaDB 10.6. Note that this only installs the package, but does not setup Mysql. This is done later in the instructions:
132
+
You can install either MySQL or MariaDB. We have given options for both MySQL and MariaDB below.
133
+
134
+
<b>2.c.1. MySQL 8.0</b>
135
135
136
-
<b> For Ubuntu 20.04 </b>
136
+
Install Mysql 8.0. Note that this only installs the package, but does not setup Mysql. This is done later in the instructions:
echo'deb [signed-by=/usr/share/keyrings/mysql.gpg] http://repo.mysql.com/apt/ubuntu focal mysql-8.0'| sudo tee -a /etc/apt/sources.list.d/mysql.list
142
-
echo'deb-src [signed-by=/usr/share/keyrings/mysql.gpg] http://repo.mysql.com/apt/ubuntu focal mysql-8.0'| sudo tee -a /etc/apt/sources.list.d/mysql.list
143
139
sudo apt update
144
-
sudo apt install mysql-community-server -y
140
+
sudo apt install mysql-server
145
141
sudo systemctl start mysql
146
142
sudo systemctl enable mysql
147
143
```
148
-
<b> For Ubuntu 22.04 </b>
149
144
145
+
146
+
Secure your MySql installation by executing the below command. Set Password for mysql root user, remove anonymous users, disallow remote root login, remove the test databases and finally reload the privilege tables.
147
+
```sh
148
+
mysql_secure_installation
150
149
```
150
+
151
+
<b>2.c.2.MariaDB 10.6</b>
152
+
153
+
Install MariaDB 10.6. Note that this only installs the package, but does not setup Mysql. This is done later in the instructions:
154
+
155
+
156
+
```sh
151
157
sudo apt update
152
158
sudo apt install mariadb-server mariadb-client -y
153
159
sudo systemctl start mariadb
154
160
sudo systemctl enable mariadb
155
161
```
162
+
> NOTE: Ubuntu 24.04 doesn't officially support MariaDb 10.6, so only MySQL 8.0 can be installed for Ubuntu 22.04
156
163
157
164
Secure your MySql installation by executing the below command. Set Password for mysql root user, remove anonymous users, disallow remote root login, remove the test databases and finally reload the privilege tables.
158
165
```sh
@@ -167,13 +174,6 @@ Wkhtmltopdf is an open source simple and much effective command-line shell utili
167
174
It uses WebKit rendering layout engine to convert HTML pages to PDF document without losing the quality of the pages. Its is really very useful and trustworthy solution for creating and storing snapshots of web pages in real-time.
title: Install LetsEncrypt SSL for Faveo on Alma Linux Running Apache Web Server
11
11
---
12
12
13
13
14
-
<imgalt="Alma Linux Logo"src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/AlmaLinux_Icon_Logo.svg/1024px-AlmaLinux_Icon_Logo.svg.png?20211201021832"width="200" />
14
+
<imgalt="Alma Linux Logo"src="https://upload.wikimedia.org/wikipedia/commons/0/0e/Almalinux_logo.png"width="200" />
# Install LetsEncrypt SSL for Faveo on Alma Running NGINX Web Server <!-- omit in toc -->
13
13
14
14
15
-
<imgalt="Alma Linux Logo"src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/AlmaLinux_Icon_Logo.svg/1024px-AlmaLinux_Icon_Logo.svg.png?20211201021832"width="200" />
15
+
<imgalt="Alma Linux Logo"src="https://upload.wikimedia.org/wikipedia/commons/0/0e/Almalinux_logo.png"width="200" />
0 commit comments