使用linux os上的postgresql重置opmanager中的密码

时间:2018-05-17 11:48:13

标签: postgresql ubuntu monitoring

Opmanager重置密码。 我一直在尝试登录我们的opmanager实例,但我忘记了我们的管理员密码。可以重置这个吗?

1 个答案:

答案 0 :(得分:0)

如果MSSQL中使用的数据库,请登录SQL Studio,右键单击OpManagerDB(企业版的情况下为CentralDB或ProbeDB),然后选择执行查询选项以执行查询。

如果在MySQL或PgSQL中使用数据库,请按照以下步骤操作:

要直接连接数据库,请使用“以管理员身份运行”选项打开Windows命令提示符,从\ OpManager \ mysql \ bin或\ OpManager \ pgsql \ bin目录运行以下命令:

MySql数据库 - 安装在Windows服务器上的OpManager OpManager独立数据库:

OpManagerDB OpManager中央数据库: mysql.exe -u root -P 13306 CentralDB

OpManager探索数据库: mysql.exe -u root -P 13308 probeDB

<强> probeDB: mysql.exe -u root -P 13308

PostgreSQL数据库:安装在Windows服务器上的OpManager

OpManager Stand alone数据库: psql -U postgres -h127.0.0.1 -p13306 OpManagerDB OpManager中央数据库: psql -U postgres -h127.0.0.1 -p13307 CentralDB OpManager探测数据库: psql -U postgres -h127.0.0.1 -p13308 ProbeDB

Mysql数据库:Linux服务器上安装了OpManager OpManager Stand alone数据库mysql -u root --socket = mysql.socket -P 13306 OpManagerDB OpManager中央数据库mysql -u root --socket = mysql.socket -P 13307 CentralDB OpManager探针数据库mysql -u root --socket = mysql.socket -P 13308 ProbeDB

PostgreSQL数据库:安装在Linux服务器上的OpManager: OpManager独立数据库./psql -U postgres -p -h 例如:./ psql -U postgres -p13306 -h localhost OpManagerDB OpManager中央数据库./psql -U postgres -p13307 -h localhost CentralDB OpManager探针数据库./psql -U postgres -p13308 -h localhost ProbeDB