검색결과 리스트
Was/JBOSS에 해당되는 글 7건
- 2013.10.14 Jboss port 증가 시키기
- 2013.04.25 Jboss Start-up Error : invalid console appender config detected, console stream is looping
- 2013.04.25 java.lang.IllegalStateException: Web app root system property already set to different value
- 2013.03.22 JBoss의 미들웨어에 Hornetq를 설치
- 2013.01.21 java.lang.IllegalStateException: jboss.web.deployment:war=/aceTframework is already installed.
- 2012.06.11 [JBOSS] WAR 파일 배포 후 웹에서 보기!!
- 2012.06.08 JBOSS 셋팅
글
[ If you think that is useful, please click the finger on the bottom~^-^good~ ]
by ace-T
포트를 100씩 증가 시키려면 아래와 같이 01로 셋팅 해준다. 02 03도 있다는거~
'Was > JBOSS' 카테고리의 다른 글
Jboss port 증가 시키기 (0) | 2013.10.14 |
---|---|
Jboss Start-up Error : invalid console appender config detected, console stream is looping (0) | 2013.04.25 |
java.lang.IllegalStateException: Web app root system property already set to different value (0) | 2013.04.25 |
JBoss의 미들웨어에 Hornetq를 설치 (0) | 2013.03.22 |
java.lang.IllegalStateException: jboss.web.deployment:war=/aceTframework is already installed. (0) | 2013.01.21 |
[JBOSS] WAR 파일 배포 후 웹에서 보기!! (0) | 2012.06.11 |
글
Jboss Start-up Error : invalid console appender config detected, console stream is looping
[ If you think that is useful, please click the finger on the bottom~^-^good~ ]
by ace-T
에러 내용 : Jboss Start-up Error : invalid console appender config detected, console stream is looping
환경 : spring-framework 3.x
jboss 5.x
구글링 해보니..외국인 형이 잘 정리 해놓았다! 땡큐!!^-^
아 블로그에 그림이 잘 올라가는 회사에 다니고 싶다 ㅋㅋㅋㅋㅋㅋㅋㅋ ㅠ_ㅠ...
추가적으로!! 덧붙이자면..위의 설정은 jboss의 log4j기능을 사용하지 않고 springframework에 설정 된 오픈소스인 log4j를 사용하고자 하는 것이다.
끝~
'Was > JBOSS' 카테고리의 다른 글
Jboss port 증가 시키기 (0) | 2013.10.14 |
---|---|
Jboss Start-up Error : invalid console appender config detected, console stream is looping (0) | 2013.04.25 |
java.lang.IllegalStateException: Web app root system property already set to different value (0) | 2013.04.25 |
JBoss의 미들웨어에 Hornetq를 설치 (0) | 2013.03.22 |
java.lang.IllegalStateException: jboss.web.deployment:war=/aceTframework is already installed. (0) | 2013.01.21 |
[JBOSS] WAR 파일 배포 후 웹에서 보기!! (0) | 2012.06.11 |
글
java.lang.IllegalStateException: Web app root system property already set to different value
[ If you think that is useful, please click the finger on the bottom~^-^good~ ]
by ace-T
환경
spring-framework 3.x
jboss 5.x
jboss 뜰 때 아래의 에러가 난다면..
java.lang.IllegalStateException: Web app root system property already set to different value
분명히 하나의 JBOSS에 여러개의 프로젝트를 넣어 사용하고 있을 것이다!!
위의 에러가 나지 않으려면~!
WEB-INF밑에 있는 web.xml에 아래와 같이 내용을 추가 해 주면 된다^-^good~
[추가 내용]
<context-param>
<param-name>webAppRootKey</param-name>
<param-value>xx.root</param-value> <--- xx는 아무이름 넣으라는 말!
</context-param>
끝~
'Was > JBOSS' 카테고리의 다른 글
Jboss port 증가 시키기 (0) | 2013.10.14 |
---|---|
Jboss Start-up Error : invalid console appender config detected, console stream is looping (0) | 2013.04.25 |
java.lang.IllegalStateException: Web app root system property already set to different value (0) | 2013.04.25 |
JBoss의 미들웨어에 Hornetq를 설치 (0) | 2013.03.22 |
java.lang.IllegalStateException: jboss.web.deployment:war=/aceTframework is already installed. (0) | 2013.01.21 |
[JBOSS] WAR 파일 배포 후 웹에서 보기!! (0) | 2012.06.11 |
글
[ If you think that is useful, please click the finger on the bottom~^-^good~ ]
by ace-T
JBoss 5.1 + Hornetq working
환경 : Winodws
JBoss의 미들웨어에 Hornetq를 설치하여 보자.
우선 JBoss5.1과 Hornetq 파일을 전달 받았고..
JBoss에 Hornetq를 셋팅 하려고 한다.
1) jboss-as 밑에 Hornetq에서 압축을 풀어서 나온 extras/ 를 복사해서 넣는다.(hornetq =>jboss)
$JBOSS_HOME/jboss-as/extras/hornetq 의 형태가 될 것이다.
2) 그리고...~/hornetq 디렉토리 밑에는 bat 파일이 없었다..--;;; 지못미...
달랑 shellscript file과...ant의 build.xml file만이 존재하였다.
그래서 build.xml을 이용하기 위해
http://ant.apache.org/bindownload.cgi 에서 ant를 받아서 빌드 시켜주었다.
.zip archive:apache-ant-1.9.0-bin.zip 을 다운 받은 뒤, 내컴퓨터 > 마우스 우클릭 > 속성 > 고급 > 환경변수 > 시스템변수 > Path에서 ant를 다운받고 bin까지의 path를 설정해주면 된다.
ex) C:\apache-ant\bin;
설정을 해 준뒤 cmd 창에서 ant라고 쳤을 때 build.xml을 찾지 못한다는 메시지가 뜬다면 잘 깔린 것이다.
또한...jboss에 있는 ant.jar로 컴파일을 하려고 하였으나...Main을 못찾는 문제가 발생 하였다. 그래서 쉽게 갈려고 ant를 다운받아서 빌드시켰다.
ant 빌드 후에는 $JBOSS_HOME/jboss-as/server/default/deply/hornet이라는 폴더가 생긴다.
- 끝 -
'Was > JBOSS' 카테고리의 다른 글
Jboss Start-up Error : invalid console appender config detected, console stream is looping (0) | 2013.04.25 |
---|---|
java.lang.IllegalStateException: Web app root system property already set to different value (0) | 2013.04.25 |
JBoss의 미들웨어에 Hornetq를 설치 (0) | 2013.03.22 |
java.lang.IllegalStateException: jboss.web.deployment:war=/aceTframework is already installed. (0) | 2013.01.21 |
[JBOSS] WAR 파일 배포 후 웹에서 보기!! (0) | 2012.06.11 |
JBOSS 셋팅 (0) | 2012.06.08 |
글
java.lang.IllegalStateException: jboss.web.deployment:war=/aceTframework is already installed.
[ If you think that is useful, please click the finger on the bottom~^-^good~ ]
by ace-T
JBoss_EAP_5.x_Runtime_Server1337849509453/deploy/aceTframework.war/"
is in error due to the following reason(s): java.lang.IllegalStateException: jboss.web.deployment:war=/aceTframework is already installed.
위의 에러가 났다. 언제? 첫번째 경로를 맞춰서 돌리고 두번째 서버를 내리고 올릴 때 났다.~
디렉토리를 찾아가보니..JBoss_EAP_5.x_Runtime_Server1337849509453 이 부분이
JBoss_5.1_Runtime_Server1358498403932 <--이런 디렉토리로 되어있었다..
변경이 되는 것이다..;;
위의 에러는 아래처럼 이클립스에서 SERVER쪽에서 3번째를 선택 하여서 나온 에러이다..
CUSTOM DEPLOY FLODER가... 변경이 된다..ㅠㅠ..
첫번째 Use workspace metadta...로 선택을 할려면 workspace가 경로를 수정 해줘야한다..
위의 작업을 한 이유는 C드라이브에 있던 프로젝트를 D드라이브로 바꾼 뒤에 설정을 다시 해주다가 났던 오류이다.
생각해보니..workspace를 수정해 주지 않았다-0-;;;;
workspace를 새로이 잡아주고 첫번째 것을 선택하여 주면 더이상 위의 오류는 나지 않는다.^0^ good~
p.s 그래도 같은 오류가 난다면~!
workspce쪽으로 이동 하여 .metadata/밑으로 가서 deploy밑에 있는 log를 지워주고 다시 서버를 start 시키면 된다.
- 끝 -
'Was > JBOSS' 카테고리의 다른 글
Jboss Start-up Error : invalid console appender config detected, console stream is looping (0) | 2013.04.25 |
---|---|
java.lang.IllegalStateException: Web app root system property already set to different value (0) | 2013.04.25 |
JBoss의 미들웨어에 Hornetq를 설치 (0) | 2013.03.22 |
java.lang.IllegalStateException: jboss.web.deployment:war=/aceTframework is already installed. (0) | 2013.01.21 |
[JBOSS] WAR 파일 배포 후 웹에서 보기!! (0) | 2012.06.11 |
JBOSS 셋팅 (0) | 2012.06.08 |
글
[ If you think that is useful, please click the finger on the bottom~^-^good~ ]
by ace-T
간단히 WAR 파일을 JBOSS쪽에 넣어두면 알아서 촥촥촥 해서 웹에서 볼 수가 있다!!
그러면 어떻게 하는지 알아보자~~~
회사에서 갑자기 " ACET 대리~" JBOSS에 WAR 올려서 WEB에서 확인 해봐요~ 라고 Order가 떨어졌다면!!
1) war 올리기
2) Jboss admin 접속
3) 주소 알아내기
4) 접속~
5) 끝~!!
[1] war 파일은
/app/jboss-eap-5.1/jboss-as/server/acetjboss/deploy
쪽에 war 파일을 올려주면 된다.(FTP같은걸루다가~, 리눅스면 scp copy!)
[2] admin 접속
암호나 패스워드를 모른다면~
conf > props > jmx-console-users.properties 를 열어서 수정 해주면 된다~^0^good~
[3] 접속 후 Applications > summary 쪽에 보면 올린 war 파일이 있다!!
해당 war를 클릭을 하면 정보가 나온다.
ex)
Path: /jboss-eap-5.1/jboss-as/server/acetjboss/deploy/acet-SHOT.war
Exploded?: no
Context Root: acet
Virtual Hosts: localhost
[4] https://해당 아이피나 주소/acet 로 접속을 하면 해당 web이 보인다^0^good~~
도움이 되셨다면 공감 꾸욱~
-end-
'Was > JBOSS' 카테고리의 다른 글
Jboss Start-up Error : invalid console appender config detected, console stream is looping (0) | 2013.04.25 |
---|---|
java.lang.IllegalStateException: Web app root system property already set to different value (0) | 2013.04.25 |
JBoss의 미들웨어에 Hornetq를 설치 (0) | 2013.03.22 |
java.lang.IllegalStateException: jboss.web.deployment:war=/aceTframework is already installed. (0) | 2013.01.21 |
[JBOSS] WAR 파일 배포 후 웹에서 보기!! (0) | 2012.06.11 |
JBOSS 셋팅 (0) | 2012.06.08 |
글
[ If you think that is useful, please click the finger on the bottom~^-^good~ ]
by ace-T
JBOSS 셋팅을 해보자. 어디에서? 리눅스에서~~
우선..다운을 받아서!
다운받는곳 : http://www.jboss.org/jbossas/downloads
압축을 풀면!!
아래의 디렉토리들이 나올 것이다!
jboss-as mod_cluster picketlink resteasy seam
jboss-as로 들어가서 보면
/jboss-eap-5.1/jboss-as/server
all default minimal production standard web
위의 디렉토리들은 각각의 서버라고 보면 된다. 사용목적에 따라서 복사해서 사용 하면 된다.
개발서버라서 default 를 복사하여 acet 라는 서버명을 가진 것을 생성!
cp default acet
[참고 사항]
'Was > JBOSS' 카테고리의 다른 글
Jboss Start-up Error : invalid console appender config detected, console stream is looping (0) | 2013.04.25 |
---|---|
java.lang.IllegalStateException: Web app root system property already set to different value (0) | 2013.04.25 |
JBoss의 미들웨어에 Hornetq를 설치 (0) | 2013.03.22 |
java.lang.IllegalStateException: jboss.web.deployment:war=/aceTframework is already installed. (0) | 2013.01.21 |
[JBOSS] WAR 파일 배포 후 웹에서 보기!! (0) | 2012.06.11 |
JBOSS 셋팅 (0) | 2012.06.08 |