#mysql #node.js
#mysql #node.js
Вопрос:
let mysql = require('mysql'); ///database adding credientails let connection = mysql.createConnection({ host: 'localhost', user: 'root', password: '', database: 'newdb' }); //test the connection connection.connect(function(err) { if (err) { return console.error('error: ' err.message); } console.log('Connected to the MySQL server.'); }); module.exports= connection;
//ошибка, с которой я столкнулся, я хотел найти решение, как ее удалить или устранить…
ошибка есть ошибка: подключение ECONNREFUSED 127.0.0.1:3306
Комментарии:
1. Это означает, что демон MySQL не работает на сервере.
2. спасибо, это работает на меня.