Getting Started
This section will help you get Tulio installed on your server. If you already have Tulio installed and are just looking for options, you can skip this page.
WARNING
The installer needs to be run as root, either directly from the terminal or remotely, using SSH. If you do not do this, the installer will not proceed.
Requirements
WARNING
Tulio must be installed on top of a fresh operating system installation to ensure proper functionality. See custom installation below for further details.
| Minimum | Recommended | |
|---|---|---|
| CPU | 1 core, amd64 / x86_64 | 4 cores |
| Memory | 1 GB (no SpamAssassin and ClamAV) | 4 GB |
| Disk | 10 GB HDD | 40 GB SSD |
| Operating System | Debian 13 (trixie) | Debian 13 (trixie) |
WARNING
Tulio only runs on AMD64 / x86_64 processors, and requires a 64-bit operating system. There are no packages for ARM64 / aarch64, i386 or any other architecture, and the installer refuses to run on them.
Supported operating systems
- Debian 13 (trixie)
WARNING
Debian 13 is the only supported operating system. TulioCP publishes packages for the trixie suite only, and the installer refuses to run on anything else — including older Debian releases and every Ubuntu release. Support for further releases will be announced at tuliocp.com when packages for them are published.
Regular installation
Interactive installer that will install the default Tulio software configuration.
Step 1: Download
Download the installation script for the latest release:
wget https://raw.githubusercontent.com/marcosfermin/tuliocp/release/install/tulio-install.shIf the download fails due to an SSL validation error, please be sure you've installed the ca-certificate package on your system - you can do this with the following command:
apt-get update && apt-get install ca-certificatesStep 2: Run
To begin the installation process, simply run the script and follow the on-screen prompts:
bash tulio-install.shYou will receive a welcome email at the address specified during installation (if applicable) and on-screen instructions after the installation is completed to log in and access your server.
Custom installation
If you want to customise which software gets installed, or want to run an unattended installation, you will need to run a custom installation.
To view a list of available options, run
bash tulio-install.sh -hList of installation options
TIP
An easier way to choose your installation options is by using the Install script generator.
To choose what software gets installed, you can provide flags to the installation script. You can view the full list of options below.
-a, --apache Install Apache [yes | no] default: yes
-w, --phpfpm Install PHP-FPM [yes | no] default: yes
-o, --multiphp Install MultiPHP [yes | no] default: no
-v, --vsftpd Install VSFTPD [yes | no] default: yes
-j, --proftpd Install ProFTPD [yes | no] default: no
-k, --named Install BIND [yes | no] default: yes
-m, --mysql Install MariaDB [yes | no] default: yes
-M, --mysql8 Install MySQL 8 [yes | no] default: no
-g, --postgresql Install PostgreSQL [yes | no] default: no
-x, --exim Install Exim [yes | no] default: yes
-z, --dovecot Install Dovecot [yes | no] default: yes
-Z, --sieve Install Sieve [yes | no] default: no
-c, --clamav Install ClamAV [yes | no] default: yes
-t, --spamassassin Install SpamAssassin [yes | no] default: yes
-i, --iptables Install iptables [yes | no] default: yes
-b, --fail2ban Install Fail2Ban [yes | no] default: yes
-q, --quota Filesystem Quota [yes | no] default: no
-W, --webterminal Web Terminal [yes | no] default: no
-d, --api Activate API [yes | no] default: yes
-r, --port Change Backend Port default: 8083
-l, --lang Default language default: en
-y, --interactive Interactive install [yes | no] default: yes
-s, --hostname Set hostname
-e, --email Set admin email
-u, --username Set admin user
-p, --password Set admin password
-D, --with-debs Path to Tulio debs
-f, --force Force installation
-h, --help Print this helpTIP
Option --multiphp (Multi PHP) also accepts a comma separated list of PHP versions. For example: --multiphp 8.3,8.4 will install PHP8.3 and PHP8.4
Example
bash tulio-install.sh \
--interactive no \
--hostname host.domain.tld \
--email email@domain.tld \
--password p4ssw0rd \
--lang fr \
--apache no \
--named no \
--clamav no \
--spamassassin no \
--multiphp '8.2,8.3,8.4'This command will install Tulio in French with the following software:
- Nginx Web Server
- PHP-FPM Application Server (PHP version 8.2, 8.3 and 8.4)
- MariaDB Database Server
- IPtables Firewall + Fail2Ban Intrusion prevention software
- Vsftpd FTP Server
- Exim Mail Server
- Dovecot POP3/IMAP Server
What’s next?
By now, you should have a Tulio installation on your server. You are ready to add new users, so that you (or they) can add new websites on your server.
To access your control panel, navigate to https://host.domain.tld:8083 or http://your.public.ip.address:8083