-2

Apache Age is fully working through terminal but Age-viewer showing error which is:

  errno: -3008,
  code: 'ENOTFOUND',
  syscall: 'getaddrinfo',
  hostname: 'loaclhost'

Database connection is fully working on bin/psql but on age-viewer it shows "[]:(ENOTFOUND) getaddrinfo ENOTFOUND loaclhost". Anyone help me plz

MAHMUDUL
  • 1
  • 2

4 Answers4

1

The error says that the host address is not valid. Either use 'localhost' or '127.0.0.1' in the hostname field as

 errno: -3008,
 code: 'ENOTFOUND',
 syscall: 'getaddrinfo',
 hostname: 'localhost'
Zainab Saad
  • 728
  • 1
  • 2
  • 8
0

you have misspelled localhost as loaclhost.

restart Apache AGE viewer and insert correct host name as localhost or 127.0.0.1

-1

errno: -3008, code: 'ENOTFOUND', syscall: 'getaddrinfo', hostname: 'loaclhost' (localhost) correct the spelling mistake and restart ageviewer

-1

As the other users have mentioned, there is a typo in 'loaclhost', it should be 'localhost'. Do correct this and try again.

Prachi
  • 39
  • 3