LIVE NOW
DartDay - 24 Hours of Blow Out Deals!
00d : 00h : 00m : 00s
Go To the Event

Knowledge Base

Find detailed guides, step-by-step tutorials, and FAQs to help you get the most from your DartNode services.

Navigation
Home
home server-setup

Databases

How to Set Up PostgreSQL

How to Set Up PostgreSQL Installation # Ubuntu/Debian apt update apt install postgresql postgresql-contrib -y systemctl start postgresql systemctl enable postgresql # CentOS/AlmaLinux dnf install postgresql-server postgresql-contrib -y postgresql-setup --initdb systemctl start postgresql systemctl…

How to Set Up Redis

How to Set Up Redis Installation # Ubuntu/Debian apt update apt install redis-server -y # CentOS/AlmaLinux dnf install redis -y Configuration Edit /etc/redis/redis.conf and set key values: # Bind to localhost only (recommended for security) bind 127.0.0.1 # Set a password requirepass…

How to Set Up MySQL / MariaDB

How to Set Up MySQL / MariaDB Installing MySQL # Ubuntu/Debian apt update apt install mysql-server -y systemctl start mysql systemctl enable mysql # CentOS/AlmaLinux dnf install mysql-server -y systemctl start mysqld systemctl enable mysqld Securing the Installation Run the security script:…