MariaDB is an open-source relational database management system commonly used in applications. With Sevalla’s Database Hosting, you can easily add a new MariaDB database from the dashboard, click Databases > Create database, and select the required options. If you have an existing database locally or with another hosting provider, you can import the MariaDB database into Sevalla’s Database Hosting using a third-party database tool or the Command Line Interface (CLI).Documentation Index
Fetch the complete documentation index at: https://docs.sevalla.com/llms.txt
Use this file to discover all available pages before exploring further.
To import a database, you must create a new database in Sevalla first.
Import a MariaDB database using a database tool
There are many database tools you can use to connect and manage your database; we have step-by-step instructions for TablePlus, which allows you to manage all the database types you can host on Sevalla. You can use any database client or tool that supports your database type. While some specifics, like navigation and field names, may vary between database tools, the fundamental concepts are the same.Import a MariaDB database using the command line interface (CLI)
You can use the command line interface (CLI) to import your MariaDB database into Sevalla. The installation of the database server and commands vary for each database type. This article is specific to MariaDB. For other database types, see:Install MariaDB
If you do not yet have MariaDB installed on your local machine, you’ll need to install it to connect to your database. Depending on your operating system, you can install MariaDB in the following ways.Windows
Download and install the Maria DB GUI Server.MacOS
With Homebrew, replace X in the following command with the minor version of MariaDB you want to install:Linux
Use the MariaDB Server repository and installmariadb-client.
Sevalla database credentials
You can find your database credentials under External connections on the database Overview page.Import a MariaDB database
Use the following command to export the database, replacing EXTERNAL_HOSTNAME, USERNAME, PORT, and DATABASE_NAME with the information from your database’s External connections. Replace export.sql with the path and name of the database you want to import:SHOW TABLES; or a similar command to review the data in your database.
Export a MariaDB database
Use the following command to export the database, replacing EXTERNAL_HOSTNAME, USERNAME, PORT, and DATABASE_NAME with the information from your database’s External connections. Replace export.sql with the path and file name of the database you want to export:mariadb-dump command. You can open the file with a plain text editor (e.g. TextEdit, Notepad++, Sublime Text, etc.) or a database tool like TablePlus to review the exported data.