반응형

[패키지 설치]

1)nginx 및 모듈 패키지 tar.gz 파일 서버 업로드 후 압축 해제

 

2)압축 해제된 nginx 경로에서 아래 명령어 실행(패키지 설치 경로는 실제 환경에 맞게 수정)
※ gcc가 설치되지 않았을 경우 패키지 설치 필요: ex) sudo apt-get install build-essential

$  ./configure --with-zlib=/SW/nginx/package/zlib-1.2.11 --with-pcre=/SW/nginx/package/pcre-8.45 \
--with-openssl=/SW/nginx/package/openssl-1.1.1o --with-http_ssl_module \
--add-module=/SW/nginx/package/echo-nginx-module-0.62 --add-module=/SW/nginx/package/nginx-sticky-module-ng-master \
--prefix=/SW/nginx/nginx-1.21.6
 $ make && make install 

 

최신 버젼인 nginx-1.21.6이 정상적으로 설치/기동되는 것을 확인하였습니다.

 

[apt 설치]

apt 설치 방법은 nginx 사이트에서 확인 가능하며, 명령어는 아래와 같습니다.

http://nginx.org/en/linux_packages.html#Ubuntu

 

Install the prerequisites:
Import an official nginx signing key so apt could verify the packages authenticity. Fetch the key:
Verify that the downloaded file contains the proper key:
The output should contain the full fingerprint 573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62 as follows:
If the fingerprint is different, remove the file.
To set up the apt repository for stable nginx packages, run the following command:
If you would like to use mainline nginx packages, run the following command instead:


Set up repository pinning to prefer our packages over distribution-provided ones:


To install nginx, run the following commands:

 

apt 명령어로 nginx 설치 시 최신 버젼인 1.21.6이 설치되며, 정상적으로 기동되는 것을 확인

1)nginx 및 모듈 패키지 tar.gz 파일 서버 업로드 후 압축 해제

 

2)압축 해제된 nginx 경로에서 아래 명령어 실행(패키지 설치 경로는 실제 환경에 맞게 수정)
※ gcc가 설치되지 않았을 경우 패키지 설치 필요: ex) sudo apt-get install build-essential

$  ./configure --with-zlib=/SW/nginx/package/zlib-1.2.11 --with-pcre=/SW/nginx/package/pcre-8.45 \
--with-openssl=/SW/nginx/package/openssl-1.1.1o --with-http_ssl_module \
--add-module=/SW/nginx/package/echo-nginx-module-0.62 --add-module=/SW/nginx/package/nginx-sticky-module-ng-master \
--prefix=/SW/nginx/nginx-1.21.6
 $ make && make install 

 

최신 버젼인 nginx-1.21.6이 정상적으로 설치/기동되는 것을 확인하였습니다.

 

[apt 설치]

apt 설치 방법은 nginx 사이트에서 확인 가능하며, 명령어는 아래와 같습니다.

http://nginx.org/en/linux_packages.html#Ubuntu

 

Install the prerequisites:
Import an official nginx signing key so apt could verify the packages authenticity. Fetch the key:
Verify that the downloaded file contains the proper key:
The output should contain the full fingerprint 573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62 as follows:
If the fingerprint is different, remove the file.
To set up the apt repository for stable nginx packages, run the following command:
If you would like to use mainline nginx packages, run the following command instead:


Set up repository pinning to prefer our packages over distribution-provided ones:


To install nginx, run the following commands:

 

apt 명령어로 nginx 설치 시 최신 버젼인 1.21.6이 설치되며, 정상적으로 기동되는 것을 확인

Apache
[httpd-ssl.conf]

   SSLCertificateFile        /SW/apache2.4/ssl/topspin_kr.crt
   SSLCertificateKeyFile     /SW/apache2.4/ssl/topspin_kr.key
   SSLCertificateChainFile   /SW/apache2.4/ssl/topspin_kr-bundle.crt


Nginx
(CRT 인증서 파일 통합)
$ cat topspin_kr.crt topspin_kr-bundle.crt > nginx_topspin_kr.crt
[nginx.conf]

  ssl_certificate      nginx_topspin_kr.crt;
  ssl_certificate_key  topspin_kr.key;

 

[Nginx 컴파일 설치 - 업그레이드]

 

1.nginx 종료

$ cd /SW/nginx

$ ./nginx -s stop

 

2.기존 nginx 디렉토리명 변경(백업)

$ mv  /SW/nginx  /SW/nginx_bak

 

3.임시 디렉토리를 생성하여 nginx 및 openssl 파일 다운로드

$ wget http://nginx.org/download/nginx-1.23.1.tar.gz

$ wget https://www.openssl.org/source/openssl-1.1.1q.tar.gz

 

4.압축 해제

(nginx 설치 파일 압축 해제)

$ tar -zxvf nginx-1.23.1.tar.gz

(openssl 최신버젼 압축 해제)

$ tar -zxvf openssl-1.1.1q.tar.gz

 

5.설치

$ cd nginx-1.23.1

$ ./configure --prefix=/SW/nginx --with-openssl=../openssl-1.1.1q 

$ make && make install

 

6.환경파일 디렉토리 백업 및 복사

$ cd /SW/nginx

 

(새로운 nginx 기본 디렉토리 백업)

$ mv logs logs_bak

$ mv conf conf_bak

$ mv html html_bak

 

(이전 버젼에서 사용했던 디렉토리 복사)

$ cp -rp /SW/nginx_bak/logs /SW/nginx/

$ cp -rp /SW/nginx_bak/html /SW/nginx/

$ cp -rp /SW/nginx_bak/conf /SW/nginx/

 

7.nginx 시작

$ cd /SW/nginx/sbin

$ ./nginx

 

 

[Nginx 컴파일 설치 - 롤백]

 

1.nginx 종료

cd /SW/nginx/sbin

$ ./nginx -s stop

 

2.신규 nginx 디렉토리명 변경(백업)

$ mv  /SW/nginx  /SW/nginx_new

 

3.기존 nginx 디렉토리명 변경(원복)

$ mv  /SW/nginx_bak /SW/nginx

 

4.nginx 시작

$ cd /SW/nginx/sbin

$ ./nginx

 

 

[Nginx 패키지 설치 - 업그레이드]

 

1./etc/yum.repos.d 경로에 nginx.repo 파일 생성

[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true



[nginx-mainline]
name=nginx mainline repo
baseurl=http://nginx.org/packages/mainline/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true 

 

2.기존 환경파일 백업

$ cp -rp /etc/nginx /etc/nginx_bak

 

3.nginx 종료

$ systemctl stop nginx

 

4. yum-config 설정 및 업데이트 수행

$ sudo yum-config-manager --enable nginx-mainline

$ sudo yum update nginx

 

5.nginx 시작

$ systemctl start nginx

 

 

[Nginx 패키지 설치 - 롤백]

 

1.nginx 종료

$ systemctl stop nginx

 

2.yum 패키지 업데이트 기록 확인

$ sudo yum history

[root@topspin /etc/yum.repos.d]# sudo yum history
Loaded plugins: fastestmirror, langpacks
ID     | Login user               | Date and time    | Action(s)      | Altered
-------------------------------------------------------------------------------
   103 | root <root>              | 2022-08-30 16:26 | Update         |    6
   102 | root <root>              | 2022-08-30 16:03 | E, I, U        |  148 EE
   101 | root <root>              | 2022-07-08 17:57 | Install        |    2
   100 | root <root>              | 2022-07-07 10:17 | Reinstall      |    1
    99 | root <root>              | 2022-06-07 11:21 | Install        |   10 EE
    98 | root <root>              | 2022-06-07 11:21 | Erase          |    6
    97 | root <root>              | 2022-06-07 11:18 | Update         |    1
    96 | root <root>              | 2022-05-26 13:49 | Install        |    1
    95 | root <root>              | 2022-05-11 08:40 | Install        |   10 EE
    94 | root <root>              | 2022-05-11 08:39 | Install        |    5
    93 | root <root>              | 2022-05-11 08:37 | Install        |    4
    92 | root <root>              | 2022-05-11 08:23 | Erase          |    8
    91 | root <root>              | 2022-05-11 08:14 | Reinstall      |    1
    90 | root <root>              | 2022-05-11 08:12 | Reinstall      |  130
    89 | root <root>              | 2022-03-10 17:16 | Install        |    2
    88 |  <score>                 | 2022-02-09 08:10 | E, I, O, U     |   97 ss
    87 | root <root>              | 2022-02-03 14:56 | Install        |    1
    86 | root <root>              | 2022-02-03 14:56 | Erase          |    1 EE
    85 | root <root>              | 2022-01-28 14:00 | I, U           |    2
    84 |  <score>                 | 2022-01-19 13:24 | Update         |    1
history list 

 

3.nginx 패키지 업데이트 실행 취소

$ sudo yum history undo <ID>

[root@topspin /etc/yum.repos.d]# sudo yum history undo 103
Loaded plugins: fastestmirror, langpacks
Undoing transaction 103, from Tue Aug 30 16:26:56 2022
    Updated nginx-1:1.22.0-1.el7.ngx.x86_64                     @nginx-stable
    Update        1:1.23.1-1.el7.ngx.x86_64                     @nginx-mainline
    Updated nginx-module-geoip-1:1.22.0-1.el7.ngx.x86_64        @nginx-stable
    Update                     1:1.23.1-1.el7.ngx.x86_64        @nginx-mainline
    Updated nginx-module-image-filter-1:1.22.0-1.el7.ngx.x86_64 @nginx-stable
    Update                            1:1.23.1-1.el7.ngx.x86_64 @nginx-mainline
    Updated nginx-module-njs-1:1.22.0+0.7.6-1.el7.ngx.x86_64    @nginx-stable
    Update                   1:1.23.1+0.7.6-1.el7.ngx.x86_64    @nginx-mainline
    Updated nginx-module-perl-1:1.22.0-1.el7.ngx.x86_64         @nginx-stable
    Update                    1:1.23.1-1.el7.ngx.x86_64         @nginx-mainline
    Updated nginx-module-xslt-1:1.22.0-1.el7.ngx.x86_64         @nginx-stable
    Update                    1:1.23.1-1.el7.ngx.x86_64         @nginx-mainline
Loading mirror speeds from cached hostfile
 * base: mirror.navercorp.com
 * epel: ftp.iij.ad.jp
 * extras: mirror.navercorp.com
 * updates: mirror.navercorp.com
Resolving Dependencies
--> Running transaction check
---> Package nginx.x86_64 1:1.22.0-1.el7.ngx will be a downgrade
---> Package nginx.x86_64 1:1.23.1-1.el7.ngx will be erased
---> Package nginx-module-geoip.x86_64 1:1.22.0-1.el7.ngx will be a downgrade
---> Package nginx-module-geoip.x86_64 1:1.23.1-1.el7.ngx will be erased
---> Package nginx-module-image-filter.x86_64 1:1.22.0-1.el7.ngx will be a downgrade
---> Package nginx-module-image-filter.x86_64 1:1.23.1-1.el7.ngx will be erased
---> Package nginx-module-njs.x86_64 1:1.22.0+0.7.6-1.el7.ngx will be a downgrade
---> Package nginx-module-njs.x86_64 1:1.23.1+0.7.6-1.el7.ngx will be erased
---> Package nginx-module-perl.x86_64 1:1.22.0-1.el7.ngx will be a downgrade
---> Package nginx-module-perl.x86_64 1:1.23.1-1.el7.ngx will be erased
---> Package nginx-module-xslt.x86_64 1:1.22.0-1.el7.ngx will be a downgrade
---> Package nginx-module-xslt.x86_64 1:1.23.1-1.el7.ngx will be erased
--> Finished Dependency Resolution

Dependencies Resolved
===============================================================================================================================================================================================================================================================================
 Package                                                                   Arch                                                   Version                                                                   Repository                                                    Size
===============================================================================================================================================================================================================================================================================
Downgrading:
 nginx                                                                     x86_64                                                 1:1.22.0-1.el7.ngx                                                        nginx-stable                                                 796 k
 nginx-module-geoip                                                        x86_64                                                 1:1.22.0-1.el7.ngx                                                        nginx-stable                                                  21 k
 nginx-module-image-filter                                                 x86_64                                                 1:1.22.0-1.el7.ngx                                                        nginx-stable                                                  24 k
 nginx-module-njs                                                          x86_64                                                 1:1.22.0+0.7.6-1.el7.ngx                                                  nginx-stable                                                 699 k
 nginx-module-perl                                                         x86_64                                                 1:1.22.0-1.el7.ngx                                                        nginx-stable                                                  39 k
 nginx-module-xslt                                                         x86_64                                                 1:1.22.0-1.el7.ngx                                                        nginx-stable                                                  23 k

Transaction Summary
===============================================================================================================================================================================================================================================================================
Downgrade  6 Packages

Total download size: 1.6 M
Is this ok [y/d/N]: y
Downloading packages:
No Presto metadata available for nginx-stable
(1/6): nginx-module-geoip-1.22.0-1.el7.ngx.x86_64.rpm                                                                                                                                                                                                   |  21 kB  00:00:00
(2/6): nginx-module-image-filter-1.22.0-1.el7.ngx.x86_64.rpm                                                                                                                                                                                            |  24 kB  00:00:00
(3/6): nginx-module-njs-1.22.0+0.7.6-1.el7.ngx.x86_64.rpm                                                                                                                                                                                               | 699 kB  00:00:00
(4/6): nginx-module-perl-1.22.0-1.el7.ngx.x86_64.rpm                                                                                                                                                                                                    |  39 kB  00:00:00
(5/6): nginx-module-xslt-1.22.0-1.el7.ngx.x86_64.rpm                                                                                                                                                                                                    |  23 kB  00:00:00
(6/6): nginx-1.22.0-1.el7.ngx.x86_64.rpm                                                                                                                                                                                                                | 796 kB  00:00:04
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total                                                                                                                                                                                                                                          362 kB/s | 1.6 MB  00:00:04
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : 1:nginx-1.22.0-1.el7.ngx.x86_64                                                                                                                                                                                                                            1/12
  Installing : 1:nginx-module-xslt-1.22.0-1.el7.ngx.x86_64                                                                                                                                                                                                                2/12
  Installing : 1:nginx-module-perl-1.22.0-1.el7.ngx.x86_64                                                                                                                                                                                                                3/12
  Installing : 1:nginx-module-njs-1.22.0+0.7.6-1.el7.ngx.x86_64                                                                                                                                                                                                           4/12
  Installing : 1:nginx-module-geoip-1.22.0-1.el7.ngx.x86_64                                                                                                                                                                                                               5/12
  Installing : 1:nginx-module-image-filter-1.22.0-1.el7.ngx.x86_64                                                                                                                                                                                                        6/12
  Cleanup    : 1:nginx-module-njs-1.23.1+0.7.6-1.el7.ngx.x86_64                                                                                                                                                                                                           7/12
  Cleanup    : 1:nginx-module-perl-1.23.1-1.el7.ngx.x86_64                                                                                                                                                                                                                8/12
  Cleanup    : 1:nginx-module-image-filter-1.23.1-1.el7.ngx.x86_64                                                                                                                                                                                                        9/12
  Cleanup    : 1:nginx-module-geoip-1.23.1-1.el7.ngx.x86_64                                                                                                                                                                                                              10/12
  Cleanup    : 1:nginx-module-xslt-1.23.1-1.el7.ngx.x86_64                                                                                                                                                                                                               11/12
  Cleanup    : 1:nginx-1.23.1-1.el7.ngx.x86_64                                                                                                                                                                                                                           12/12
  Verifying  : 1:nginx-module-xslt-1.22.0-1.el7.ngx.x86_64                                                                                                                                                                                                                1/12
  Verifying  : 1:nginx-1.22.0-1.el7.ngx.x86_64                                                                                                                                                                                                                            2/12
  Verifying  : 1:nginx-module-perl-1.22.0-1.el7.ngx.x86_64                                                                                                                                                                                                                3/12
  Verifying  : 1:nginx-module-njs-1.22.0+0.7.6-1.el7.ngx.x86_64                                                                                                                                                                                                           4/12
  Verifying  : 1:nginx-module-geoip-1.22.0-1.el7.ngx.x86_64                                                                                                                                                                                                               5/12
  Verifying  : 1:nginx-module-image-filter-1.22.0-1.el7.ngx.x86_64                                                                                                                                                                                                        6/12
  Verifying  : 1:nginx-module-geoip-1.23.1-1.el7.ngx.x86_64                                                                                                                                                                                                               7/12
  Verifying  : 1:nginx-module-image-filter-1.23.1-1.el7.ngx.x86_64                                                                                                                                                                                                        8/12
  Verifying  : 1:nginx-module-xslt-1.23.1-1.el7.ngx.x86_64                                                                                                                                                                                                                9/12
  Verifying  : 1:nginx-module-perl-1.23.1-1.el7.ngx.x86_64                                                                                                                                                                                                               10/12
  Verifying  : 1:nginx-1.23.1-1.el7.ngx.x86_64                                                                                                                                                                                                                           11/12
  Verifying  : 1:nginx-module-njs-1.23.1+0.7.6-1.el7.ngx.x86_64                                                                                                                                                                                                          12/12

Removed:
  nginx.x86_64 1:1.23.1-1.el7.ngx nginx-module-geoip.x86_64 1:1.23.1-1.el7.ngx nginx-module-image-filter.x86_64 1:1.23.1-1.el7.ngx nginx-module-njs.x86_64 1:1.23.1+0.7.6-1.el7.ngx nginx-module-perl.x86_64 1:1.23.1-1.el7.ngx nginx-module-xslt.x86_64 1:1.23.1-1.el7.ngx

Installed:
  nginx.x86_64 1:1.22.0-1.el7.ngx nginx-module-geoip.x86_64 1:1.22.0-1.el7.ngx nginx-module-image-filter.x86_64 1:1.22.0-1.el7.ngx nginx-module-njs.x86_64 1:1.22.0+0.7.6-1.el7.ngx nginx-module-perl.x86_64 1:1.22.0-1.el7.ngx nginx-module-xslt.x86_64 1:1.22.0-1.el7.ngx

Complete! 

 

4.nginx 시작

$ systemctl start nginx

weblogic 12c는 GUI환경에서 기본적으로 설치가 가능하며, console에서 설치할 경우 silent를 사용해야 한다.

 1)fmw_12.1.3.0.0_wls.jar과 install.asp 파일을 동일한 경로에 업로드 한다.

 2)install.asp파일의 ORACLE_HOME에 weblogic 엔진을 설치 할 경로를 추가한다.(ORACLE_HOME=/SW/was/weblogic12c)
 
 3)oraInst.loc 파일 작성 (root 계정으로 수행)
   vi /etc/oraInst.loc (아래 2줄 추가)
  ----------------------------------------
  inventory_loc=/SW/Inst_log
  inst_group=weblogic
  ----------------------------------------
  #inventory_loc -> 설치로그 경로
  #inst_group -> 설치 계정 그룹명
 
 4)weblogic 엔진 설치 수행
  java -jar fmw_12.1.3.0.0_wls.jar -silent -responseFile /SW/app/install.rsp (responseFile 절대경로 입력)
  (java -jar fmw_12.1.3.0.0_wls.jar -silent -invPtrLoc /etc/oraInst.loc -responseFile /SW/app/install.rsp -logfile ./wlsInstall.log)
    ※ 사용할 java의 절대경로를 포함하여 입력    
 
 5)도메인 구성
  [엔진경로]/wlserver/common/bin 에 wls_install.sh 파일 업로드 후 실행


  $  sh wls_install.sh
   
   1)Input IpAddress
    -> IP입력
   2)Input ListenPort(Default:7001) 
    -> Port 입력
   3)Input SSLPort(Default:7002)
    -> SSL Port 입력
   4)Input StartMode(dev/prod)
    -> 개발/운영 모드 입력
   5)Input Account
    -> 관리자 ID 입력    
   6)Input Password
    -> 관리자 Password 입력
   7)Input Domain Home
    -> 도메인 설치 경로 입력
    
  6)Weblogic Admin 기동
   [도메인 경로]/bin/startWeblogic.sh

 

install.rsp
0.00MB
wls_install.sh
0.00MB

1. 기동 쉘(Unix)

< startA.sh> 

#!/bin/sh

cd /home/wls/domains/testDomain
DATEPRE=`date +%Y%m%d%H%M%S`
if [[ -a ADminServer.log ]] then
     mv AdminServer.log ./logs/AdminServer/$DATEPRE.log
fi
nohup ./startWeblogic.sh > AdminServer.log & 2>&1


 1) cd ~ [도메인 경로] 입력
 2) logs 디렉토리 생성


2. 기동 스크립트(Windows)
<startA.cmd>

@ECHO OFF
 cd C:\WAS\Weblogic\user_projects\domains\testDomain
set LOG_DIR=C:\WAS\Weblogic\user_projects\domains\testDomain\logs
set DATEPRE=%date:~0,10%_%TIME:~0,2%%TIME:~3,2%%TIME:~6,2%
cd %LOG_DIR%
if EXIT %LOG_DIR%\AdminServer.log ren AdminServer.log
AdminServer .%DATEPRE%.log
cd C:\WAS\Weblogic\user_projects\domains\testDomain
rem ECHO "웹로직 어드민 서버를 start합니다."
start /B startWebLogic.cmd > %LOG_DIR%\AdminServer.log 2>&1

 

1.웹로직 서버 디렉터리 구조
 -BEA_HOME : 웹로직 제품의 최상의 dir, 웹로직 라이선스 license.bea 파일의 위치 
 -JAVA_HOME : JDK관련 파일
 -/modules : Open 프로젝트 라이브러리
 -config.sh : 웹로직 도메인 생성 스크립트
 -WL_HOME : 웹로직 서버와 관련된 모든 라이브러리
 -/bin : 웹로직을 사용하기 위한 공통 스크립트의 위치
 -/server : 웹로직 서버가 구동하면서 직접 사용하는 라이브러리가 집약된 최상위 디렉토리
 -/plugin : 웹로직 서버와 연동는 WEB SERVER 플러그인 파일의 위치

2. 웹로직 도메인
 -인스톨을 실행하면 라이브러리 파일만 설치된다. 웹로직을 사용하기 위해서는 'start' 또는 stop'을 실행해주어야
  하는데, 이런 스크립트가 모여 있는 디렉터리를 도메인 디렉터리라고 한다.

3. 웹로직 도메인의 종류
  1) 단독 실행형(Stand-alone) : 웹로직 도메인 안에 웹로직 인스턴스가 하나만 존재하는 것(Admin server,Domain server)
  2) 클러스터링되지 않은 어드민 서버와 매니지드 서버(Non Clustered Admin Server, Managed Server) : 어드민 서버와
       여러개의 도메인 서버가 존재한다.
  ※ 여러개의 서버에서 같은 도메인을 구성할 수 있다.
  3) 클러스터링된 어드민 서버와 매니지드 서버(Clustered Admin Server, Managed Server) : 한 개인 도메인에 여러개의
       매니지드 서버가 존재해야 클러스터(이중화) 구성을 할 수 있다.
  ※ 클러스터의 역할(두가지 통신 방법을 이용)
   -첫번째는 IP 소켓(socket)을 이용하여 클러스트 하에서는 가족 객체들이 HTTP 세션 상태(session state)와 상태 세션(stateful session) 
    EJB 상태가 primary와 secondary 서버 인스턴스 사이에서 복제될 때이고, 두 번째는 원격 서버(remote server) 인스턴스에 있는 클러스터된 오브젝트(clusterd object)를 제어할 때이다. IP 멀티캐스트(Multicast)를 이용한 1:N 통신을 이용하여  JDNI 트리 다운로드나 클러스터 된 매니지드 서버의 동작 유무 상태 확인(health check) 등을 하게 된다.

4.뤱로직 도메인 구성

단 계
구 분
이 름
내 용
1
도메인 이름
Testdomain
-
2
어드민 서버 이름
testAdmin
7001
3
도메인 경로
D:\bea10\domains\testdomain
도메인 디렉터리
4
매니지드 서버 이름
testManaged1
8001
testManaged2
8002
5
클러스터 사용 포트
testCluster
234.0.0.1:6666
6
JDK 설치 여부
OS의 확인
 
7
노드매니저의 사용
사용하지 않음
사용하지 않음
8
JDBC 커넥션풀
testPool
 
9
JMS의 사용
testJMSfactory, testtopic, testqueue
 
10
로그의 분리
D:\bea10\log\server
D:\bea10\log\nohup
D:\bea10\log\application
위치 지정 및 파일
시스템 권한 확인
11
테스트할 애플리케이션
D:\bea10\APP\webapps
D:\bea10\APP\ejb
D:\bea10\APP\ear
위치 지정 및 파일
시스템 권한 확인

-기능 확장은 웹브라우저로 설정하는 것이 좋다. http://[IP]:7001/console

+ Recent posts