9
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【今更】ZabbixのAdminパスワードのリセットとか…

Last updated at Posted at 2016-08-15

色々な環境でZabbixを使っている場合、他の環境のZabbixのデータを引っこ抜いてきて手元のZabbix入れることもあると思います。

そんな使い方される人は、以下の設定の為にZabbix Web GUIにログインできない状況に遭遇してたりしませんか?

・認証にLDAPを使っている
・Adminアカウントのパスワードが変わっている
・Adminアカウントがなくパスワードが分かっているZabbixユーザやZabbix管理者のアカウントをZabbix特権管理者にしたい

そんな時は下記のSQLでデフォルトに戻してやります。

■認証を標準(ZabbixのDBのパスワードを使用する)に戻す。

UPDATE config SET authentication_type=0;

■Adminのパスワードをリセット(zabbixに変更)する

UPDATE users SET passwd='5fce1b3e34b520afeffb37ce08c7cd66' WHERE alias = 'Admin';

■Adminアカウントがなくパスワードが分かっているZabbixユーザやZabbix管理者のアカウントをZabbix特権管理者にしたい

UPDATE users SET type=3 WHERE alias='アカウント';

大したことではないのですけど、知らないと困るよな的な…A(^^;

9
11
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?