본문 바로가기

others

JEUS5 webadmin 비밀번호 변경

JEUSwebadmin 아이디와 비밀번호는 JEUS_HOME/config/`hostname`/security/SYSTEM_DOMAIN/accouts.xml 에 다음과 같이 저장되어 있다.

 

accouts.xml

<?xml version="1.0"?>

<accounts xmlns="http://www.tmaxsoft.com/xml/ns/jeus">

      <users>

        <user>

            <name>administrator</name>

            <password>{base64}vs/Iow==</password>

            <group>Administrators</group>

        </user>

    </users>

    <groups>

        <group>

            <description>A group for administrators</description>

            <name>Administrators</name>

        </group>

    </groups>

</accounts>

암호화 되어 있기 때문에 JEUS에서 제공하는 JEUS_HOME/bin/encryption Tool을 이용해서 암호화한후 값을 설정하면 된다.

encryption의 사용방법은 다음과 같다.

*******@****:/jeus5/bin> encryption

=================== JEUS Encryption Tool Ver. 2.0 Usage ==================

 $./encryption algorithm [string]

 * PARAMETERS :

   - 'algorithm' indicates that strings will be encoded with encryption algorithm.

      valid algorithm value : base64|SHA|DES|DESede|AES|SEED|Blowfish

   - [string] is one or more strings to be encoded.

 * OUTPUT :

   - [string] --> [encoded string] --> [string]

 * Then you can apply an encoded string to the Jeus configuration files.

 

Ex1) When you want to encode 'abc' with base64 algorithm --

 $./encryption  base64 abc

 [abc] --> [YWJj] --> [abc]

 

Ex2) When you want to encode 'abc' with 3des algorithm --

 $./encryption  DES abc

 [abc] --> [GVT1wnorsFrzZYUlB8To] --> [abc]


설정되어 있는 암호를 잃어버린 경우 찾기위한 decryption Tool은 못찾은걸수도 있지만 보이지 않는다.


'others' 카테고리의 다른 글

자바스크립트 체크박스 관련  (0) 2009.07.30
browser의 layout engine  (0) 2009.06.17
JEUS5 webadmin port찾기  (0) 2009.01.22
Logging in Tomcat with Log4j  (0) 2008.04.18
Log4j의 additivity 옵션  (0) 2008.01.07