启动anyproxy报错Caught exception: Error: getaddrinfo E

2019-01-03 00:53发布

报错内容如下图 

Caught exception: Error: getaddrinfo ENOTFOUND 1ocalhost 1ocalhost:3306

标签: anyproxy
1条回答
Viruses.
2楼-- · 2019-01-03 01:36

修改myRule.js文件

// 创建数据库连接,需根据自己数据库账号密码修改
var connection = mysql.createConnection({
    host: 'localhost',
    user: 'root',
    password: 'xxxx',
    database: 'phone_weixin'
});

其中localhost改为127.0.0.1就正常了

查看更多
登录 后发表回答