# Importing database

To import the database use the [import-db](https://docs.create-magento-app.com/getting-started/available-commands/import-db) command.

{% hint style="warning" %}

### **Heads up!**

If you are running a version older than **magento-scripts\@1.6.0**, you will need to start project manually using [start command](https://docs.create-magento-app.com/getting-started/available-commands/start)!
{% endhint %}

{% tabs %}
{% tab title="Yarn" %}

```bash
yarn import-db <dump file path>
```

{% endtab %}

{% tab title="NPM" %}

```bash
npm run import-db <dump file path>
```

{% endtab %}
{% endtabs %}

When the command is called, multiple steps are executed to ensure the success of the import. These steps are as follows:

* A connection established with MySQL
* Theme configurations will be dumped and restored after the dump is imported
* The dump will be imported into MySQL from the specified file
* It will be ensured that dump will work with CMA set up by setting necessary configuration values
* And Magento setup will be running to finish the configuration.

To import database from remote ssh server, use the following guide:

{% content-ref url="importing-database/importing-remote-database" %}
[importing-remote-database](https://docs.create-magento-app.com/usage-guide/importing-database/importing-remote-database)
{% endcontent-ref %}
