Skip to content

Instantly share code, notes, and snippets.

@mark05e
Last active March 14, 2024 15:03
Show Gist options
  • Save mark05e/e0d2b7dd4418a32892292622245b03ac to your computer and use it in GitHub Desktop.
Save mark05e/e0d2b7dd4418a32892292622245b03ac to your computer and use it in GitHub Desktop.

Avaya Contact Recorder (ACR) Password Reset

Windows edition

  1. Check which port PostgreSQL db is listening on

    netstart -ano | findstr 432

  2. Login to db using eware account

    psql -U eware -h 127.0.0.1 -p 6432

Note: For some installations, it could be port 5432. Refer to step 1 output.

Note: Use 127.0.0.1 as the host instead of localhost because there are times where localhost might try to resolve to ipv6 address and the db might not be listening on that interface.

  1. List all the usernames on the application db

    select username from users;

  2. Set null password for the user you want to reset password

    update users set password=null where username='admin';

Note: In this example, we are resetting password for user admin

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment