제우스 Container1,2에서 하나의 Application 실행하기.

Posted by Breeze24
2016. 6. 4. 23:46 Unix/WAS


제우스 Container2개에서 하나의 Application 실행하기. 



    <application> 

        <name>test</name>

        <path>/home/jeus6/webhome/test</path>

        <deployment-type>COMPONENT</deployment-type>

        <web-component>

            <context-root>/</context-root>

        </web-component>

        <deployment-target>

            <target>

                <engine-container-name>node_container1</engine-container-name>

                <web-context-group>

                    <name>MyGroup</name>

                </web-context-group>

            </target>

            <target>

                <engine-container-name>node_container2</engine-container-name>

                <web-context-group>

                    <name>MyGroup</name>

                </web-context-group>

            </target>

        </deployment-target>

    </application>


JEUSMain.xml에 위와 같이 Application안에 두개의 Container를 target으로 지정한다.  

.