#ConnectionError: Failed to connect to localhost:1433 - Could not connect (sequence)
1 messages · Page 1 of 1 (latest)
Thanks for the reply, we are using the Microsoft SQL Server Management Studio and it's wokring fine
ERROR [TypeOrmModule] Unable to connect to the database. Retrying (2)...
ConnectionError: getaddrinfo ENOTFOUND (LocalDb)
- Hardcode the database details to see if the problem is the app not being able to load the environment variable
host: 'localhost',
port: 1433,
username: 'admin',
password: 'Password@12345',
database: 'justDB',
- I see you put a space character before the
Password@12345. That might be an issue.
# env
- DB_PASSWORD= Password@12345
+ DB_PASSWORD=Password@12345