ETIMEDOUT Error within databse

Hello, we have been having a confusing error upon starting up our server that I cannot find a fix for.

This is the error:

[ script:oxmysql] Unable to establish a connection to the database (ETIMEDOUT)! [ script:oxmysql] Error undefined: connect ETIMEDOUT (node:70425) UnhandledPromiseRejectionWarning: Error: connect ETIMEDOUT at PoolConnection._handleTimeoutError (@oxmysql/dist/build.js:17216:21) at listOnTimeout (node:internal/timers:557:17) at processTimers (node:internal/timers:500:7)

Any help would be hugely appreciated

Verify if the database server is up and running.

You want to extend your connection timeout, it’s likely the server resources are taking longer to load than the default connection timeout. Timeout is in milliseconds.

e.g. “mysql://username:password@localhost/database?connectTimeout=30000&acquireTimeout=30000&waitForConnections=true&keepAlive=30&charset=utf8mb4”