[root@nmcserver ~]# cat /opt/lgtonmc/etc/gstd.conf | grep hostname
string authsvc_hostname = "nwserver-a1.emclab.local";
A。認証サーバーで、テキスト ファイルを作成し、パスワード値を平文で 1 行に指定します。たとえば、「mypassword_in.txt」という名前のファイルを作成します 。このファイルの内容は「1.Password」です。
B。mypassword_in.txt ファイルが作成されたディレクトリーで管理者コマンド プロンプトを開きます。
c. certutil.exe コマンドを使用して、 mypassword_in.txt ファイルで定義されているパスワード値に対して Base64 でエンコードされたパスワードを作成します。例:
certutil.exe -encode mypassword_in.txt mypassword_out.txt
1.Passwordのbase64でエンコードされた値を含むmypassword_out.txtファイルの内容を作成する必要があります。例:
-----BEGIN CERTIFICATE
-----MS5QYXNzd29yZA==
-----END CERTIFICATE-----
A。認証サーバーで、次のコマンドを実行します。
echo -n '1.パスワード' |base64 (ベース64)
2.authc-local-config.json.templateファイルのコピーを作成します。次の場所にあります。
Windowsの場合:C:\Program Files\EMC NetWorker\nsr\authc-server\scripts
Linux: /opt/nsr/authc-server/scripts
3.uthc-local-config.json.template.copyファイルで、次の手順を実行します。
A。ユーザー名変数をAdministratorに置き換えます。
b. encoded_password 変数を base64 でエンコードされたパスワード値に置き換えます。例:
{
"local_users": [
{
"user name": "administrator",
"password": "MS5QYXNzd29yZA=="
}]
}
4.authc-local-config.json.template.copyファイルの名前をauthc-local-config.jsonに変更します。
5.authc-local-config.jsonファイルをTomcat confフォルダーにコピーします。デフォルトでは、confフォルダーは次の場所にあります。
Windowsの場合:C:\Program Files\EMC NetWorker\authc-server\tomcat\conf
Linux: /nsr/authc/conf
A。 authc-local-config.json ファイルに対する権限を変更します。
chmod 755/nsr/authc/conf/authc-local-config.json
6.NetWorkerサーバーでサービスを停止してから開始します。
A。管理コマンド プロンプトから、次のコマンドを実行します。
net stop nsrexecd
net start nsrd
NetWorkerサーバーがNMCサーバーでもある場合は、NMCサーバー サービスを開始します。次のコマンドを入力します。 net start gstd
A。rootコマンド プロンプトで、次のコマンドを実行します。
systemctl start networker nsr_shutdown
7.NetWorker認証サービスが開始されると、起動プロセスは authc-local-config.jsonをチェックします。ファイルが存在し、パスワードがパスワードに定義されている最小パスワード ポリシー要件に準拠している場合、NetWorker認証サービスはパスワードをリセットします。次の場所にある authc-server.log ファイルを確認します。
Windowsの場合:C:\Program Files\EMC NetWorker\authc\tomcat\logs
Linux: /nsr/authc/logs
authc_mgmt -u administrator -p "1.Password" -e find-all-users
例:
authc_mgmt -u administrator -p "1.Password" -e find-all-users
The query returns 2 records.
User Id User Name
1000 administrator
1001 svc_nmc_networker
9.新しいパスワードを使用してNetWorker Management Consoleにログインします。