beautypg.com

B.3 resetting administrator password – Artesyn System Services Framework Installation and Use (February 2014) User Manual

Page 80

background image

Additional Information

System Services Framework Installation and Use (6806800S58B)

80

as DomainTag = "C2000".

4. Restart the HPI daemon. Killing the bbs-hpibd will restart it as the bbs-hpibd-ha

script ensures the restart of HPI daemon if it is not running killall -9 bbs-hpibd.

B.3

Resetting Administrator Password

Following are the steps to reset the administrator password if it is lost:

1. Log on to the blade on which SSF and PostgreSQL is installed.

2. Log on as a PostgreSQL user with the # su -l postgres command.

3. Connect to the PostgreSQL database using the # /usr/local/postgres/bin/psql

SSF command. The following output is displayed:
psql (9.1.3)

Type "help" for help.

SSF=#

4. Using the SSF=# select * from "user"; command, list the available users. The list

of available users along with the passwords are displayed as shown below:
user | password | hash

-------+----------+------

Admin | Admin |

(1 row)

SSF=#

5. Reset the administrator password using the following command:

SSF=# update "user" set password = 'test' where "user" = 'Admin';

UPDATE 1

SSF=#

After changing the password of the administrator, you can check whether the new password is
reflected or not by listing the available users using the SSF=# select * from
"user";

command. The following output is displayed: