mirror of https://github.com/apache/druid.git
Merge pull request #1571 from druid-io/add-md
Add setup to metadata store page
This commit is contained in:
commit
5086490620
|
@ -16,6 +16,22 @@ The following metadata storages are supported:
|
|||
|
||||
To choose a metadata storage to use, set the `druid.extensions` config to include the module for the metadata storage.
|
||||
|
||||
|
||||
## Set up MySQL
|
||||
|
||||
1. If you don't already have it, download MySQL Community Server here: [http://dev.mysql.com/downloads/mysql/](http://dev.mysql.com/downloads/mysql/).
|
||||
2. Install MySQL.
|
||||
3. Create a druid user and database.
|
||||
|
||||
```bash
|
||||
mysql -u root
|
||||
```
|
||||
|
||||
```sql
|
||||
GRANT ALL ON druid.* TO 'druid'@'localhost' IDENTIFIED BY 'diurd';
|
||||
CREATE DATABASE druid DEFAULT CHARACTER SET utf8;
|
||||
```
|
||||
|
||||
Segments Table
|
||||
--------------
|
||||
|
||||
|
|
Loading…
Reference in New Issue