mysql 尝试将Node.js连接到托管在Azure上的MariaDB数据库时出现“从池中检索连接超时”错误

67up9zun  于 2024-01-05  发布在  Mysql
关注(0)|答案(1)|浏览(273)

问题陈述

正如标题所示,我试图连接到托管在Azure上的MariaDB数据库,但我无法确定此错误消息的根本原因。

  1. % node dbTest.js
  2. Total connections: 0
  3. Active connections: 0
  4. Idle connections: 0
  5. SqlError: (conn=-1, no: 45028, SQLState: HY000) retrieve connection from pool timeout after 10003ms
  6. (pool connections: active=0 idle=0 limit=5)
  7. at module.exports.createError (/Users/myuser/nextjs-test/node_modules/mariadb/lib/misc/errors.js:64:10)
  8. at Pool._requestTimeoutHandler (/Users/myuser/nextjs-test/node_modules/mariadb/lib/pool.js:349:26)
  9. at listOnTimeout (node:internal/timers:573:17)
  10. at process.processTimers (node:internal/timers:514:7) {
  11. sqlMessage: 'retrieve connection from pool timeout after 10003ms\n' +
  12. ' (pool connections: active=0 idle=0 limit=5)',
  13. sql: null,
  14. fatal: false,
  15. errno: 45028,
  16. sqlState: 'HY000',
  17. code: 'ER_GET_CONNECTION_TIMEOUT'
  18. }

字符串

最小可复制示例

这是从MariaDB文档中提取的。我只更改了初始化池中的凭据,并将SQL查询从大多数DB模式中无效的内容更改为有效的内容。

  1. // Required Modules
  2. const mariadb = require("mariadb");
  3. //Initialize Pool
  4. const pool = mariadb.createPool({
  5. host: "<host name or IPv4 address>",
  6. user: "<user name>",
  7. password: "<password>",
  8. database: "<database name>",
  9. connectionLimit: 100,
  10. });
  11. console.log("Total connections: ", pool.totalConnections());
  12. console.log("Active connections: ", pool.activeConnections());
  13. console.log("Idle connections: ", pool.idleConnections());
  14. async function main() {
  15. let conn;
  16. try {
  17. conn = await fetchConn();
  18. // Use Connection
  19. var rows = await get_select(conn);
  20. for (i = 0, len = rows.length; i < len; i++) {
  21. console.log("Total connections: ", pool.totalConnections());
  22. console.log("Active connections: ", pool.activeConnections());
  23. console.log("Idle connections: ", pool.idleConnections());
  24. console.log(rows);
  25. }
  26. } catch (err) {
  27. // Manage Errors
  28. console.log(err);
  29. } finally {
  30. // Close Connection
  31. if (conn) conn.end();
  32. }
  33. }
  34. // Fetch Connection
  35. async function fetchConn() {
  36. let conn = await pool.getConnection();
  37. console.log("Total connections: ", pool.totalConnections());
  38. console.log("Active connections: ", pool.activeConnections());
  39. console.log("Idle connections: ", pool.idleConnections());
  40. return conn;
  41. }
  42. //Get select query
  43. async function get_select(conn) {
  44. return await conn.query("SELECT 1 AS val");
  45. }
  46. main();


也许不是根本原因
我不认为这是一个网络或防火墙问题,因为我已经将我的IP地址列入白名单,并且我能够使用Python中的mysql.connector以及SQL Developer和MySQL等IDE从同一台机器连接到目标数据库。
我不认为这是数据库配置问题,因为我已经检查了数据库超时设置。如果出现错误消息所示的超时,则可能是来自我的本地机器,而不是数据库。
我不认为这是IPv4与IPv6的问题,因为我已经尝试用IPv4 IP地址替换主机名。此外,StackOverflow上的许多建议解决方案都是针对localhost被用作主机的特定情况,这不是我的用例。
我已确认数据库凭据中没有拼写错误。出于故障排除的目的,我明确包含了数据库凭据,以确保该问题与获取环境变量的问题无关。
我已经确认数据库使用默认端口3306。

附加信息

StackOverflow上的其他OP也遇到了同样的错误,但他们帖子上的答案并没有解决我的问题:linklinklinklinklinklink
上面的大多数StackOverflow链接都有我复制的MRE,但即使在应用了这些帖子中公认的答案后,我在许多情况下也会得到同样的错误(我认为所有情况下,但我已经失去了跟踪)。

系统及包详情

macOS索诺马14.1
节点v20.10.0
email protected(https://stackoverflow.com/cdn-cgi/l/email-protection)

7gs2gvoe

7gs2gvoe1#

  • 我按照MSDOC的参考代码,得到了同样的错误。
  • 对于使用@azure/arm-mariadb的Azure身份,我遵循此DOC

注意事项:
Azure Database for MariaDB is正在停用。我们强烈建议您迁移到Azure Database for MySQL。有关迁移到Azure Database for MySQL的详细信息,请参阅Azure Database for MariaDB发生了什么?

  • 在Azure中,我们在var conn = mysql.createConnection中使用connection string
  • 该代码适用于本地MySQL,对于Azure,连接字符串的格式有所不同。
    本地mysql中:
  1. const mariadb = require('mariadb');
  2. const pool = mariadb.createPool({
  3. host: '127.0.0.1',
  4. user: 'root',
  5. password: 'Password',
  6. connectionLimit: 5,
  7. database: 'databaseName', // Add this line to specify the database
  8. });
  9. async function selectAndInsert() {
  10. let conn;
  11. try {
  12. conn = await pool.getConnection();
  13. // SELECT query
  14. const selectResult = await conn.query('SELECT * FROM example_table');
  15. console.log('SELECT Result:', selectResult);
  16. // INSERT query
  17. const insertResult = await conn.query('INSERT INTO example_table (name, age) VALUES (?, ?)', ['New Person', 28]);
  18. console.log('INSERT Result:', insertResult);
  19. } catch (err) {
  20. throw err;
  21. } finally {
  22. if (conn) return conn.end();
  23. }
  24. }
  25. // Call the function
  26. selectAndInsert();

字符串


的数据


使用MySQL包编码以连接到Azure Database for MariaDB服务器:

下面的代码连接到数据库,在example_table上执行SELECT查询。

  1. const fs = require('fs');
  2. const mysql = require('mysql');
  3. // Replace these values with your actual database credentials
  4. const dbConfig = {
  5. host: "Server name",
  6. user: "Server admin login name",
  7. password: "your_actual_password",
  8. database: "your_actual_database",
  9. port: 3306,
  10. ssl: { required: true }
  11. };
  12. // Create a connection to the database
  13. const conn = mysql.createConnection(dbConfig);
  14. // Connect to the database
  15. conn.connect((err) => {
  16. if (err) {
  17. console.error('Error connecting to database:', err.message);
  18. return;
  19. }
  20. console.log('Connected to the database');
  21. // Perform a SELECT query
  22. conn.query('SELECT * FROM example_table', (queryErr, results) => {
  23. if (queryErr) {
  24. console.error('Error executing SELECT query:', queryErr.message);
  25. return;
  26. }
  27. // Process the query results
  28. console.log('Query results:', results);
  29. // Close the database connection
  30. conn.end((endErr) => {
  31. if (endErr) {
  32. console.error('Error closing database connection:', endErr.message);
  33. } else {
  34. console.log('Database connection closed');
  35. }
  36. });
  37. });
  38. });

本地:

Azure:

展开查看全部

相关问题