Ghost连接mysql,要如何配置?
npm install mysql
安装好 Ghost 要求的 MySQL 模块后,config.js
那里要配置连接参数,安装下来的 MySQL 模块还没有数据库的吧?而且我并不知道 MySQL 的用户名和密码还有数据库,是不是要下载个 MySQL 的客户端来创建用户和数据库呢?
如果用全局模式 install MySQL 模块,是否可以在命令行下查看数据库名称这些呢?
var mysql = require('mysql');
var connection = mysql.createConnection({
host : 'localhost',
user : 'me',
password : 'secret',
});
connection.connect();
connection.query('SELECT 1 + 1 AS solution', function(err, rows, fields) {
if (err) throw err;
console.log('The solution is: ', rows[0].solution);
});
connection.end();
MySQL 的 README.md 的连接使用代码是上面这个,可是我并不知道 user 和 password 要怎么连接呢?