'WAS'에 해당되는 글 2건

Jeus 6.0 을 Quick Start로 서버로 구동을 해 WebAdmin 페이지를 로그인을 하려고 하였는데 

계속 로그인에 실패하였다. Jeus 설치시에 입력하였던 패스워드를 똑같이 입력하였는데도 말이다.


원인은 Quick Start시 USERNAME과 PASSWORD는 bin파일에 있는 jeus-quickstart.properties.cmd 파일에 매핑되어있는 속성으로 로그인을 해야한다.


jeus-quickstart.properties.cmd

rem Set up administrator name

SET USERNAME=jeus


rem Set up administrator password

SET PASSWORD=jeus


TITLE TmaxSoft JEUS 6 QuickStart


파일을 메모장으로 여러보면 서버 구동을위한 환경정보가 세팅되어있는데 USERNAME과 PASSWORD만 보면 기본적으로 jeus로 세팅되어있다.



블로그 이미지

행복그리고..

,
<?xml version='1.0' encoding='UTF-8'?>
<weblogic-web-app xmlns="http:⁄⁄xmlns.oracle.com⁄weblogic⁄weblogic-web-app"
	xmlns:xsi="http:⁄⁄www.w3.org⁄2001⁄XMLSchema-instance"
	xsi:schemaLocation="http:⁄⁄xmlns.oracle.com⁄weblogic⁄weblogic-web-app http:⁄⁄xmlns.oracle.com⁄weblogic⁄weblogic-web-app⁄1.0⁄weblogic-web-app.xsd">
	<session-descriptor>
		<timeout-secs>3600<⁄timeout-secs>
		<invalidation-interval-secs>60<⁄invalidation-interval-secs>
		<persistent-store-type>memory<⁄persistent-store-type>
		<url-rewriting-enabled>true<⁄url-rewriting-enabled>
	<⁄session-descriptor>
	<jsp-descriptor>
		<page-check-seconds>5<⁄page-check-seconds>
		<precompile>false<⁄precompile>
		<keepgenerated>false<⁄keepgenerated>
		<encoding>utf-8<⁄encoding>
	<⁄jsp-descriptor>
	<charset-params>
		<input-charset>
			<resource-path>⁄*<⁄resource-path>
			<java-charset-name>utf-8<⁄java-charset-name>
		<⁄input-charset>
	<⁄charset-params>


	<container-descriptor>
		<show-archived-real-path-enabled>true<⁄show-archived-real-path-enabled>
	<⁄container-descriptor>

	<context-root>⁄<⁄context-root>
<⁄weblogic-web-app>

블로그 이미지

행복그리고..

,