Databases
Create MySQL or MariaDB databases and users, assign permissions, and get your connection string — all without touching the command line.
Open your server and click "Databases" in the sidebar.
Click "Create Database". Enter a name (e.g. myblog_db) and select the character set — UTF8MB4 is selected by default and supports all languages and emoji.
Click "Create User". Enter a username (e.g. myblog_user) and a strong password. DeployFly can generate a secure password for you.
In the user's row, click "Assign to Database". Select the database and choose privileges. "All Privileges" is correct for most applications.
Click "Connection Info" to see the full database connection string. Copy it directly into your application's .env or config file.
If you need to connect to this database from your local machine or another server, toggle "Allow Remote" on the user. A firewall rule for port 3306 is added automatically.
Watch out
Tips