사용하는 applcation 에서 applcaiton.xml 을 아래와같이 하면 직접 doman url 로 application 이 포인트 됨
또한  아래와 같이 root.war 을 rename 하여함

[root@localhost deploy]# cd jboss-web.deployer/
[root@localhost jboss-web.deployer]# ls
aROOT.war    jasper-jdt.jar       jbossweb-service.jar  META-INF
conf         jbossweb-extras.jar  jsf-libs              server.xml
context.xml  jbossweb.jar         jstl.jar
[root@localhost jboss-web.deployer]# pwd
/usr/local/jboss-4.2.2.GA/server/default/deploy/jboss-web.deployer

=======================================================

application.xml  jboss-app.xml
[root@localhost META-INF]# more application.xml
<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://java.sun.com/xml/ns/javaee"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_5.
xsd"
             version="5">
   
   <display-name>sangbooking</display-name>
  
   <module>
      <web>
         <web-uri>sangbooking.war</web-uri>
         <context-root>/sangbooking      /              </context-root>
      </web>
   </module>
  
   <module>
      <ejb>sangbooking.jar</ejb>
   </module>
  
   <!-- Seam and EL -->
   <module>
       <ejb>jboss-seam.jar</ejb>
   </module>   

'I.T. Diary > Middleware' 카테고리의 다른 글

Jboss 에서 context-root 을 바꿀때  (0) 2010/03/20
Securing the jboss JMX console  (0) 2010/02/28
Jboss LDAP Intergration  (0) 2010/02/28
Jboss Seam  (0) 2009/12/12
Seam  (0) 2009/11/09
Jboss Training  (0) 2009/11/09
Posted by aboutnz
TAG Jboss, seam

LVM on centos

I.T. Diary/Linux 2010/03/08 15:02
dd command 로 clone한  시스템의 하드디스크가 크면 카피한 불륨을 남아있는 하드디스크 영역를 이용하여 움직일수 있다.

1) Fdisk 을 이용하여 남아있는 영역에 새로운 partition 을 지정한다.
2) Centos 의 LVM GUI 을 사용하여 physical volume group 에 추가한다.
3) 이것을 logical volume group 에 추가한다
4) Migrating extents 을 사용하여 보다큰 volume group 으로 이동시키고 mount point 을 잡아준다.

참조 : http://www.centos.org/docs/5/html/Deployment_Guide-en-US/s1-system-config-lvm.html

'I.T. Diary > Linux' 카테고리의 다른 글

LVM on centos  (0) 2010/03/08
When java applet loading is not working linix firefox  (0) 2010/03/07
Clone the linux box  (0) 2010/03/07
Using Quotes in shell script  (0) 2008/05/17
DansGuardian (web content filtering proxy)  (0) 2008/04/28
우분투 (ubuntu)을 맥처럼 꾸미기  (0) 2008/02/24
Posted by aboutnz
TAG centos, Linux
아래 URL 을 참조하여 plugin 을 설치하면 되며 plugin 이 없는경우 디이엑토리을 만들면된다.
http://www.java.com/en/download/help/linux_install.xml#install

'I.T. Diary > Linux' 카테고리의 다른 글

LVM on centos  (0) 2010/03/08
When java applet loading is not working linix firefox  (0) 2010/03/07
Clone the linux box  (0) 2010/03/07
Using Quotes in shell script  (0) 2008/05/17
DansGuardian (web content filtering proxy)  (0) 2008/04/28
우분투 (ubuntu)을 맥처럼 꾸미기  (0) 2008/02/24
Posted by aboutnz
Linx dd command

Source disk  와 distination disk 을 hard disk cable 에 연결하고 linux rescue disk 로 부팅하여
dd if=/dev/hda of=/dve/hdc 을 하면 그대로 리눅스박스 가 clone 된다.
(참고 if=souce. of=ouptput)



'I.T. Diary > Linux' 카테고리의 다른 글

LVM on centos  (0) 2010/03/08
When java applet loading is not working linix firefox  (0) 2010/03/07
Clone the linux box  (0) 2010/03/07
Using Quotes in shell script  (0) 2008/05/17
DansGuardian (web content filtering proxy)  (0) 2008/04/28
우분투 (ubuntu)을 맥처럼 꾸미기  (0) 2008/02/24
Posted by aboutnz
TAG clone, dd, Linux
JMX console 보안을 위해 유저 와 패스워드을 입력하게 하는 방법. 모든 웹로인에도 같은 방식을 적용.

http://www.redhat.com/docs/manuals/jboss/jboss-eap-4.2/doc/Server_Configuration_Guide/Inspecting_the_Server___the_JMX_Console_Web_Application-Securing_the_JMX_Console.html

'I.T. Diary > Middleware' 카테고리의 다른 글

Jboss 에서 context-root 을 바꿀때  (0) 2010/03/20
Securing the jboss JMX console  (0) 2010/02/28
Jboss LDAP Intergration  (0) 2010/02/28
Jboss Seam  (0) 2009/12/12
Seam  (0) 2009/11/09
Jboss Training  (0) 2009/11/09
Posted by aboutnz
TAG Jboss, JMX