Data import and export
EMQX provides Command Line Interface, [HTTP API](./http-api.md#endpoint-data- import-and-export) and Dashboard’s visual interface (EMQX Enterprise) for data import and export functions. The data currently supported for import and export are as follows:
- Rule engine configuration data (resources, rules)
- Blacklist data
- Dashboard user data
- MQTT user data and ACL data added through the emqx-auth-mnesia plugin
- MQTT user data and ACL data added through the emqx-auth-clientid plugin (exported from EMQX 4.2)
Export data. The file name format of the exported file is
emqx-export-YYYY-MM-DD-HH-mm-SS.json
, and the default export path is the data directory (Refer to )Save the exported file, and we save the exported file to the tmp directory here.
$ cp /var/lib/emqx/emqx-export-2020-5-15-17-39-0.json /tmp
Import data. The name of the imported file must be specified as an absolute path
$ ./emqx_ctl data import /tmp/emqx-export-2020-5-15-17-39-0.json
Overrides. Sometimes it is necessary to add or override some data in the import file. This can be achieved using
--env
parameter, that allows to pass additional data in JSON format:
HTTP API
Download data file
Import data
$ curl -i --basic -u admin:public -X POST "http://localhost:8081/api/v4/data/import" -d @/tmp/emqx-export-2020-9-4-10-24-16.json
{"code":0}