MySQL Can Connect Remotely but not Locally

后端 未结 8 1498
迷失自我
迷失自我 2021-01-19 20:29

This is a weird problem and I\'m not sure what\'s going on. I installed MySQL on a linux box I have running Ubuntu 10.04 LTS. I can access mysql via SSH mysql -p

8条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-19 21:05

    You need to set the socketPath

    mysql = require('mysql');
    var connection = mysql.createConnection({
        host     : 'localhost',
        user     : 'root',
        password : 'password',
        socketPath  : '/var/run/mysqld/mysqld.sock',
    
    });
    

提交回复
热议问题