nodejs 连接远程MySql数据库 出现自动断开问题

发布于 2022-09-05 03:53:11 字数 1530 浏览 25 评论 0

参照网上这段代码还是不能解决问题,本地连接不会出现断开,求大神们讲解

    var connection;  

    function handleDisconnect() {  
      connection = mysql.createConnection(db_config); // Recreate the connection, since  
                                                      // the old one cannot be reused.  
  
      connection.connect(function(err) {              // The server is either down  
        if(err) {                                     // or restarting (takes a while sometimes).  
          console.log('error when connecting to db:', err);  
          setTimeout(handleDisconnect, 2000); // We introduce a delay before attempting to reconnect,  
        }                                     // to avoid a hot loop, and to allow our node script to  
      });                                     // process asynchronous requests in the meantime.  
                                              // If you're also serving http, display a 503 error.  
      connection.on('error', function(err) {  
        console.log('db error', err);  
        if(err.code === 'PROTOCOL_CONNECTION_LOST') { // Connection to the MySQL server is usually  
          handleDisconnect();                         // lost due to either server restart, or a  
        } else {                                      // connnection idle timeout (the wait_timeout  
          throw err;                                  // server variable configures this)  
        }  
      });  

      return connection;
    }  
  
    handleDisconnect();  

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅暮の光 2022-09-12 03:53:11

你的问题解决没

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文