사용자 도구

사이트 도구


service:was:weblogic:install

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
service:was:weblogic:install [2007/06/22 07:53]
mattabu
service:was:weblogic:install [2009/01/03 02:25] (현재)
starlits
줄 193: 줄 193:
 Configure Administrative Username and Password: Configure Administrative Username and Password:
 ----------------------------------------------- -----------------------------------------------
-Create a user automatically assigned to the Administrative Role. This user is the default administrator used to start development mode servers.+Create a user automatically assigned to the Administrative Role.  
 +This user is the default administrator used to start development mode servers.
     |          Name                        Value              |     |          Name                        Value              |
    _|_________________________|_________________________________|    _|_________________________|_________________________________|
줄 211: 줄 212:
 Configure Administrative Username and Password: Configure Administrative Username and Password:
 ----------------------------------------------- -----------------------------------------------
-Create a user automatically assigned to the Administrative Role. This user is the default administrator used to start development mode servers.+Create a user automatically assigned to the Administrative Role.  
 +This user is the default administrator used to start development mode servers.
     "*User password:" = []     "*User password:" = []
 Input new *User password: OR [Exit][Reset][Accept]> weblogic Input new *User password: OR [Exit][Reset][Accept]> weblogic
줄 219: 줄 221:
 Configure Administrative Username and Password: Configure Administrative Username and Password:
 ----------------------------------------------- -----------------------------------------------
-Create a user automatically assigned to the Administrative Role. This user is the default administrator used to start development mode servers.+Create a user automatically assigned to the Administrative Role.  
 +This user is the default administrator used to start development mode servers.
     |          Name                        Value              |     |          Name                        Value              |
    _|_________________________|_________________________________|    _|_________________________|_________________________________|
줄 238: 줄 241:
 Configure Administrative Username and Password: Configure Administrative Username and Password:
 ----------------------------------------------- -----------------------------------------------
-Create a user automatically assigned to the Administrative Role. This user is the default administrator used to start development mode servers.+Create a user automatically assigned to the Administrative Role.  
 +This user is the default administrator used to start development mode servers.
     |          Name                        Value              |     |          Name                        Value              |
    _|_________________________|_________________________________|    _|_________________________|_________________________________|
줄 332: 줄 336:
 password=비밀번호 password=비밀번호
 </code> </code>
 +
 +
 +
  
 ==== Shutdown ==== ==== Shutdown ====
 <code bash> <code bash>
-$ /home/weblogic/bea/jdk150_04/bin/java  +$ /home/weblogic/bea/jdk150_06/bin/java  
--classpath /home/weblogic/bea/weblogic81/server/lib/weblogic.jar weblogic.Admin +-classpath /home/weblogic/bea/wlserver_10.0/server/lib/weblogic.jar weblogic.Admin 
 -url t3://localhost:7001  -url t3://localhost:7001 
 -username 아이디  -username 아이디 
 -password 비밀번호 FORCESHUTDOWN Server-0 -password 비밀번호 FORCESHUTDOWN Server-0
 +</code>
 +또는
 +<code>
 +$ cd /home/weblogic/bea/domains/test_domain/bin
 +$ ./stopManagedWeblogic.sh Server-0 t3://localhost:7001 아이디 비밀번호
 </code> </code>
  
 ==== Start & Shutdowon 정리 ==== ==== Start & Shutdowon 정리 ====
-위와 같이 Weblogic Admin, Managed Server 를 시작,종료가 상당히 번거로운것을 알 수 있다. 이를 좀 더 간편하게 하기 위해서 동길이가 제작한 스크립트를 소개한다. 물론 허락은 받지 않았지만, 조만간 허락을 받도록 하겠다. 적당히 잘 수정해서 쓰면 편할 것이다.+  * 위와 같이 Weblogic Admin, Managed Server 를 시작,종료가 상당히 번거로운것을 알 수 있다. \\ 이를 좀 더 간편하게 하기 위해서 동길이가 제작한 스크립트를 소개한다. \\ 물론 허락은 받지 않았지만, 조만간 허락을 받도록 하겠다. 적당히 잘 수정해서 쓰면 편할 것이다.
 <code bash> <code bash>
 #!/bin/sh #!/bin/sh
 +
 +# desc : weblogic admin/manage service start/stop scripts
 +# starlits@adminschool.net
 +
  
 ############################################################### ###############################################################
줄 471: 줄 487:
  
 exit 0; exit 0;
-</code> 
- 
-===== non-root User로 80(<1024)포트 서비스하는 방법 ===== 
-참고사이트 : http://www.linux.org.mt/article/tomcat-ports 
- 
-===== Debian 4.0 에서 Apache 2.2 + Weblogic 10 연동 ===== 
-우선, Apache 2.2 를 설치한다. 
-<code> 
-# apt-get install apache2 apache2-mpm-prefork apache2-prefork-dev apache2-utils apache2.2-common 
-</code> 
- 
-이미 설치된 웹로직 10 의 mod_wl_22.so 를 Apache 2.2 모듈 디렉토리로 복사한다. 
-<code> 
-# cd /home/weblogic/bea/wlserver_10.0/server/plugin/linux/i686/ 
-# apxs2 -i -a -n weblogic_module mod_wl_22.so 
-</code> 
- 
-weblogic.load 파일을 작성한다. 
-<code> 
-# cd /etc/apache2/mods-available 
-# vi weblogic.load 
-LoadModule weblogic_module /usr/lib/apache2/modules/mod_wl_22.so 
-</code> 
- 
-weblogic.conf 파일을 작성한다. 
-<code> 
-# vi weblogic.conf 
-<IfModule mod_weblogic.c> 
-  WebLogicCluster 아이피주소1:포트1,아이피주소2:포트2 
-  DynamicServerList ON 
-  MatchExpression *.jsp 
-  ConnectTimeoutSecs 60 
-  KeepAliveEnabled ON 
-  # Idempotent OFF 
-#   MatchExpression *.jws 
-#   MatchExpression *.do 
-</IfModule> 
-</code> 
- 
-weblogic 모듈을 enable 시킨다. 
-<code> 
-# a2enmod weblogic 
 </code> </code>
  
  
-===== 그 외 ===== 
-Apache 와 연동하는 법, 클러스터 구성하는 법 등에 대해서는 필요시 다시 정리하겠다. 
-특히 클러스터를 구성을 하려면 L4가 있던지, Apache 와 연동이 되어 있어야 한다는 점은 알고 있어야겠다. 
  
service/was/weblogic/install.1182466401.txt.gz · 마지막으로 수정됨: 2007/06/22 07:53 저자 mattabu