Rational ClearQuest のユーザー アカウントからの認証は ClearQuest 用のレポート サーバーに渡されるため、パスワードはセキュリティの考慮事項に従って暗号化する必要があります。空白パスワードは推奨されません。
パスワードを暗号化するには次のようにします。
- Websphere Application
Server の common¥lib ディレクトリにナビゲートします。
- Java ランタイムを開始して com.ibm.rational.security.PasswordCrypt クラスをロードし、パスワードを暗号化します。
使用するコマンドの構文は次のとおりです。
Usage: java -classpath cqlogin.jar com.ibm.rational.security.PasswordCrypt [-options] [password]
where options include:
-? -help print this help message
-genkey generate a new key
-encrypt encrypt the given password (in clear text)
-decrypt decrypt the given password (encoded in hexadecimal)
コマンド行は次のようになります。ここで
test は暗号化するパスワードとして指定されています。
java -classpath cqlogin.jar com.ibm.rational.security.PasswordCrypt -encrypt test
- 暗号化されたパスワードがコンソールに表示されます。
「test」は、「07d779388fa00cf2e422a7b3b1d26e6c」に暗号化されています。
暗号化されたパスワードは記録またはメモしておいてください。構成プロセスの後述のステップで必要になります。