您的位置:首页 > 运维架构 > Linux

Breif steps of installing Weblogic on Linux

2012-08-01 17:38 363 查看
1,install weblogic software

./weblogic-server924_linux32.bin

2,creating the domain

/home/bea/weblogic92/common/binconfig.sh

e.g. created /home/bea/user_projects/domains/mydomain

3,start the admin server

/home/bea/user_projects/domains/mydomain/bin/startWebLogic.sh

better to make some change for the default configuration

MEM_ARGS="-Xms1024m -Xmx1024m"

WLS_USER="weblogic"

export WLS_USER

WLS_PW="weblogic"

export WLS_PW

4,you maybe need to create a managed server:Server-0

on the admin console:

Environment > Servers.

In the Servers table, click New.

5,start managed server:

/home/bea/user_projects/domains/mydomain/bin/startManagedWebLogic.sh Server-0

6,customize you own starting script:

USER_MEM_ARGS="-Xms300m -Xmx300m -XX:PermSize=64m -XX:MaxPermSize=64m"

export USER_MEM_ARGS

. /home/bea/user_projects/domains/mydomain/bin/startManagedWebLogic.sh Server-0
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息