-
Notifications
You must be signed in to change notification settings - Fork 528
Database servers file descriptor
Eduardo Nunes edited this page Sep 18, 2015
·
3 revisions
This document provides information about the json
file that stores all database servers settings defined by the user. The file described here will stored in the user's home directory ~/.sqlectron.json
.
{
"servers": [
{
"name": "my mysql db",
"client": "mysql",
"host": "10.3.4.1",
"port": 3306,
"socketPath": "/path/to/mysql.sock",
"database": "my_db",
"user": "my_user",
"password": "my_password",
"ssh": {
"host": "my_db.mysqlhost.com",
"port": 22,
"user": "root",
"password": "ASfds123",
"privateKey": "/Users/name/.ssh/id_rsa"
}
}
]
}