weblogic服务器下一个domain建多个server(端口)

时间:2024.5.2

weblogic服务器下一个domain建多个server(端口)

http://blog.sina.com.cn/s/blog_451a1736010080su.html

在weblogic 下建一个domin,常常需要建多个server(端口),例如建一个7001,一个8001的访问端口

它分为下面几个步骤:

<1>在domain下的Servers下新建一个server,指定IP和端口

<2>指定连接池到新建的server

<3>指定相应的web应用到新建的server

<4>修改原来的启动脚本,新建一个单独的启动脚本.

正文:

<1>在domain下的Servers下新建一个server,指定IP和端口

首先打开http://localhost:7001/console主页

点击“环境->环境->服务器”

点击“新建”

服务器名:Server-ptsub

监听地址: 不填表法本机所有IP,(或指定一个IP地址如:127.0.0.1)

监听端面口:8001

点击“下一步”

点击“完成”

点击“Server-ptsub”

<2>指定连接池到新建的server

<3>指定相应的web应用到新建的server

点击“部署->安装”

注:如果你的:user_projects\mc_domains\mc_domain\autodeploy:新建了web project,这里会自动加载,所以你要手工加载指定不同端口的的web project 一定不能放在auto deploy中,否则无法指定

选择到你的另一个:web project

点击“下一步”:

点击“下一步”,关键选择你新建的服务器:Server-ptsub

注意:选择:我要使部署能够通过下列位置进行访问:(建议跟源目录一致)

如果你选择:使用部署的目标定义的默认值:则此端口的WEB服务启动时,会从你前面选择的源目录:D:\ Oracle\ Middleware\ user_projects\ mc_domains\ mc_domain\ website\ ptsub_website

拷贝到此处,Web appplication :

"D:\Oracle\Middleware\user_projects\mc_domains\mc_domain\servers\Server-ptsub\stage\ptsub_website\ptsub_website"

会造成你在myeclipse指定deploy到:D:\ Oracle\ Middleware\ user_projects\ mc_domains\ mc_domain\ website\ ptsub_website不会实时更新,只有重新启些WEB服务时才能更新。

<4> 新建一个启动脚本:startWebLogic-8001.cmd内容如下

startManagedWebLogic.cmd Server-ptsub http://localhost:7001

其中只需改变NewServer名字为你新建的Server名字,注意后面的http://localhost:7001为你的主Server的应用,不是你新的Server地址,请不要修改.

放到startWebLogic.cmd文件同目录下

在命令形式下启动:

1. startWebLogic.cmd

2.startWebLogic-8001.cmd  输入域的管理名和密码即可运行

新建一个停止脚本:stopWebLogic-8001.cmd 内容如下

stopManagedWebLogic.cmd Server-ptsub http://localhost:7001

<5> 查看服务运行状态

点击“环境->环境->服务器”

看到两个Server 健康状况:OK

点击“部署”

看到健康状况:OK

点击你建立的web应用:ptsub_website

看到首页,点击测试就OK了:

Ø  weblogic中如果使用80端口和根目录作为应用的默认目录

1、使用根目录作为默认目录,在我们系统程序的WEB-INF目录下面新建一个:weblogic.xml,内容是

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE weblogic-web-app PUBLIC "-//BEA Systems, Inc.//DTD Web Application 8.1//EN" "http://www.bea.com/servers/wls810/dtd/weblogic810-web-jar.dtd">

<weblogic-web-app>

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

</weblogic-web-app>

2、域管理端口默认是7001,改成80。

注意,默认端口不会显示在它不会显示在域目录\config\config.xml中,更改方法

a. 直接修改:

  <server>

<name>AdminServer</name>

<listen-port>80</listen-port>

    <listen-address></listen-address>

  </server>

改成:

  <server>

    <name>AdminServer</name>

    <ssl>

      <enabled>false</enabled>

    </ssl>

    <listen-port>80</listen-port>

    <listen-address></listen-address>

    <data-source>

      <rmi-jdbc-security xsi:nil="true"></rmi-jdbc-security>

    </data-source>

  </server>

b. 在网页控制台中直接更改:

c. 注意,改了端口后,记得也要更改你自定义的WEB SERVER的启动文件,否则不能在网页监控台上监控,但不影响WEB SERVER的使用。

startWebLogic.cmd文件目录下:

启动脚本:startWebLogic-8001.cmd内容如下

startManagedWebLogic.cmd Server-ptsub http://localhost:7001

改为

startManagedWebLogic.cmd Server-ptsub http://localhost:80

停止脚本:stopWebLogic-8001.cmd 内容如下

stopManagedWebLogic.cmd Server-ptsub http://localhost:80

改为

stopManagedWebLogic.cmd Server-ptsub http://localhost:80

3、监听80端口,需要在相关域目录\config\config.xml,例如:

  <server>

    <name>demo</name>

    <listen-port>80</listen-port>

    <listen-address>192.168.1.2</listen-address>

  </server>默认端口不是80,只需要将listen-port改成80即可。

端口也可以在安装的时候修改

Ø  一些说明:

1. 新建端口的Server会在:域目录\server\下创建一个新服务器名的目录。

2. 所有相关服务的配置文件在:域目录\config\config.xml 文件中。


第二篇:weblogic创建domain域


weblogic创建domain域.txt

2008-02-21 15:55

bash-2.05# ls

bsu utils.jar

bash-2.05# cd..

bash: cd..: command not found

bash-2.05# cd ..

bash-2.05# cd weblogic81

bash-2.05# ls

common javelin samples server uninstall workshop bash-2.05# cd server

bash-2.05# ls

3rd_party_licenses.txt

about_wls.html builder ext

LICENSE.TXT bin copyright lib

bash-2.05# cd bin

bash-2.05# '

> ls

>

>

>

bash-2.05# pwd

/usr/local/bea/weblogic81/server/bin

bash-2.05# ls -l

total 7830

-rwxr-xr-x 1 root other 5054 May 26 2006 ant

-rwxr-xr-x 1 root other 171 May 26 2006 antRun

-rwxr-xr-x 1 root other 1433 May 26 2006 antRun.pl -rwxr-xr-x 1 root other 2488 May 26 2006

complete-ant-cmd.pl

-rwxr-xr-x 1 root other 1406 May 26 2006 cw_blueglobe.ico -rwxr-xr-x 1 root other 1406 May 26 2006 html.ico

-rwxr-xr-x 1 root other 557056 May 26 2006 iisproxy128.dll drwxr-xr-x 2 root other 512 May 26 2006 international -rwxr-xr-x 1 root other 569344 May 26 2006 mod_wl128_20.so -rwxr-xr-x 1 root other 569344 May 26 2006 mod_wl_20.so drwxr-xr-x 2 root other 512 May 26 2006 oci817_8 drwxr-xr-x 2 root other 512 May 26 2006 oci901_8 drwxr-xr-x 2 root other 512 May 26 2006 oci920_8

-rwxr-xr-x 1 root other 548864 May 26 2006 proxy30128.dll -rwxr-xr-x 1 root other 548864 May 26 2006 proxy35128.dll -rwxr-xr-x 1 root other 548864 May 26 2006 proxy36128.dll -rwxr-xr-x 1 root other 548864 May 26 2006 proxy61128.dll

-rwxr-xr-x 1 root other 4544 May 26 2006 runant.pl -rwxr-xr-x 1 root other 2894 May 26 2006 runant.py -rwxr-xr-x 1 root other 3722 May 26 2006 setWLSEnv.sh -rwxr-xr-x 1 root other 4039 May 26 2006

startNodeManager.sh

-rwxr-xr-x 1 root other 1311 May 26 2006 startWLBuilder.sh -rwxr-xr-x 1 root other 12395 May 26 2006 startWLS.sh drwxr-xr-x 3 root other 512 May 26 2006 win64

bash-2.05# cd /usr/local/bea/weblogic81/common/bin/

bash-2.05# ls -l

total 68

-rwxr-xr-x 1 root other 10898 May 26 2006 commEnv.sh -rwxr-xr-x 1 root other 868 May 26 2006 config.sh -rwxr-xr-x 1 root other 2547 May 26 2006 configDB.sh

-rwxr-xr-x 1 root other 840 May 26 2006 config_builder.sh -rwxr-xr-x 1 root other 377 May 26 2006

encryptWSSEPolicy.sh

-rwxr-xr-x 1 root other 362 May 26 2006

generateSecretKeyFile.sh

-rwxr-xr-x 1 root other 464 May 26 2006 quickstart.sh -rwxr-xr-x 1 root other 3922 May 26 2006

startManagedWebLogic.sh

-rwxr-xr-x 1 root other 5437 May 26 2006 startPointBase.sh -rwxr-xr-x 1 root other 2681 May 26 2006

startPointBaseConsole.sh

-rwxr-xr-x 1 root other 1792 May 26 2006 stopPointBase.sh bash-2.05# ./config.sh

Unable to instantiate GUI, defaulting to console mode.

<--------------------- BEA WebLogic Configuration Wizard

--------------------->

Create or Extend a Configuration:

---------------------------------

Choose between creating and extending a configuration. Based on your selection, the Configuration Wizard guides you through the steps to generate a new or

extend an existing configuration.

->1|Create a new WebLogic configuration

| Start here to create a WebLogic configuration in your projects |directory.

2|Extend an existing WebLogic configuration

| Start here to extend an existing WebLogic configuration. Use this

|option to add applications and services, including Database access (JDBC)

|and Messaging (JMS). This option also enables you to extend functionality

|by enabling WebLogic Workshop.

Enter index number to select OR [Exit][Next]> 1

<--------------------- BEA WebLogic Configuration Wizard

--------------------->

Select a Domain Template:

-------------------------

Please select a template from the list or select another directory of templates.

* [/usr/local/bea/weblogic81/common/templates/domains]

1|Basic WebLogic Workshop Domain 8.1.5.0

| BEA Systems, Inc.

| Create a basic WebLogic Workshop domain, without installing sample |applications. Domains created from this template will support the |WebLogic Server and WebLogic Workshop runtime functionality, including

|support for J2EE applications, Web applications, Web Services and custom

|controls. Use domains created from this template for development of |WebLogic Workshop applications.

->2|Basic WebLogic Server Domain 8.1.5.0

| BEA Systems, Inc.

| Create a basic WebLogic Server domain without installing sample |applications.

3|WebLogic Server Examples Domain 8.1.5.0

| BEA Systems, Inc.

| Create the WebLogic Server Examples domain in a directory outside of the |installed kit. The Examples domain contains a collection of examples to

|show best practices for coding individual J2EE APIs.

4|Avitek Medical Records Sample Domain 8.1.5.0

| BEA Systems, Inc.

Enter index number to select OR [Down][Exit][Previous][Next]> 2 <--------------------- BEA WebLogic Configuration Wizard

--------------------->

Choose Configuration Option:

----------------------------

*Do you want to run the wizard in express mode?

->1|Yes

2|No

Enter index number to select OR [Exit][Previous][Next]>

<--------------------- BEA WebLogic Configuration Wizard

--------------------->

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. | Name | Value | _|_________________________|_________________________________| 1| *User name: | weblogic | 2| *User password: | | 3| *Confirm user password: | | 4| Description: | The default administration user | Select Option:

1 - Modify "User name"

2 - Modify "User password"

3 - Modify "Confirm user password"

4 - Modify "Description"

Enter option number to select OR [Exit][Previous][Next]> 2

<--------------------- BEA WebLogic Configuration Wizard

--------------------->

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. "*User password:" = []

Input new *User password: OR [Exit][Reset][Accept]> weblogic <--------------------- BEA WebLogic Configuration Wizard

--------------------->

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. | Name | Value | _|_________________________|_________________________________| 1| *User name: | weblogic | 2| *User password: | ******** | 3| *Confirm user password: | | 4| Description: | The default administration user | Select Option:

1 - Modify "User name"

2 - Modify "User password"

3 - Modify "Confirm user password"

4 - Modify "Description"

5 - Discard Changes

Enter option number to select OR [Exit][Previous][Next]> 3

<--------------------- BEA WebLogic Configuration Wizard

--------------------->

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. "*Confirm user password:" = []

Input new *Confirm user password: OR [Exit][Reset][Accept]> weblogic <--------------------- BEA WebLogic Configuration Wizard

--------------------->

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. | Name | Value | _|_________________________|_________________________________| 1| *User name: | weblogic | 2| *User password: | ******** | 3| *Confirm user password: | ******** | 4| Description: | The default administration user | Select Option:

1 - Modify "User name"

2 - Modify "User password"

3 - Modify "Confirm user password"

4 - Modify "Description"

5 - Discard Changes

Enter option number to select OR [Exit][Previous][Next]>

<--------------------- BEA WebLogic Configuration Wizard

--------------------->

Domain Mode Configuration:

--------------------------

Enable Development or Production Mode for this domain. ->1|Development Mode

2|Production Mode

Enter index number to select OR [Exit][Previous][Next]> 1 <--------------------- BEA WebLogic Configuration Wizard --------------------->

Java SDK Selection:

-------------------

->1|Other Java SDK

Enter index number to select OR [Exit][Previous][Next]> 1 <--------------------- BEA WebLogic Configuration Wizard --------------------->

Java SDK Selection:

-------------------

"JVM Directory" = []

Input new JVM Directory OR [Exit][Previous][Next]>

<--------------------- BEA WebLogic Configuration Wizard --------------------->

Java SDK Selection:

-------------------

"JVM Directory" = []

** You must specify a JDK location.

Input new JVM Directory OR [Exit][Previous][Next]> n <--------------------- BEA WebLogic Configuration Wizard

--------------------->

Java SDK Selection:

-------------------

"JVM Directory" = []

** You must specify a JDK location.

Input new JVM Directory OR [Exit][Previous][Next]>

/usr/local/bea/j2sdk1.4.2_12/

<--------------------- BEA WebLogic Configuration Wizard

--------------------->

Java SDK Selection:

-------------------

"JVM Directory" = [/usr/local/bea/j2sdk1.4.2_12/]

Input new JVM Directory OR [Exit][Previous][Next]>

<--------------------- BEA WebLogic Configuration Wizard

--------------------->

Java SDK Selection:

-------------------

->1|Yes

2|No

** Unable to determine if the directory you selected contains a valid JDK.

** Do you want to proceed? [/usr/local/bea/j2sdk1.4.2_12/]

Enter index number to select OR [Exit][Previous][Next]>

<--------------------- BEA WebLogic Configuration Wizard

--------------------->

Select the target domain directory for this configuration: ----------------------------------------------------------

"Target Location" = [/usr/local/bea/user_projects/domains]

Input new Target Location OR [Exit][Previous][Next]>

<--------------------- BEA WebLogic Configuration Wizard --------------------->

Edit Domain Information:

------------------------

| Name | Value |

_|________|__________|

1| *Name: | mydomain |

Enter value for "Name" OR [Exit][Previous][Next]> oaDomain <--------------------- BEA WebLogic Configuration Wizard --------------------->

Edit Domain Information:

------------------------

| Name | Value |

_|________|__________|

1| *Name: | oaDomain |

Select Option:

1 - Modify "Name"

2 - Discard Changes

Enter option number to select OR [Exit][Previous][Next]> <--------------------- BEA WebLogic Configuration Wizard --------------------->

Creating Domain...

0% 25% 50% 75% 100%

[------------|------------|------------|------------]

[***************************************************]

**** Domain Created Successfully! ****

bash-2.05# pwd

/usr/local/bea/weblogic81/common/bin

bash-2.05# cd ..

bash-2.05# cd ..

bash-2.05# cd ..

bash-2.05# ls

UpdateLicense.sh j2sdk1.4.2_12 logs user_projects

beahomelist license.bea newlicense.bea utils

ext_components license_scale_limited.bea

registry.xml weblogic81

bash-2.05# cd user*

bash-2.05# ls

domains

bash-2.05# cd doamins

bash: cd: doamins: No such file or directory

bash-2.05# ls

domains

bash-2.05# cd domains

bash-2.05# ls

gjjdomain oaDomain

bash-2.05# cd oaDomain

bash-2.05# ls

DefaultAuthenticatorInit.ldift

applications setEnv.sh

DefaultAuthorizerInit.ldift boot.properties startManagedWebLogic.sh

DefaultRoleMapperInit.ldift config.xml startWebLogic.sh

SerializedSystemIni.dat fileRealm.properties stopWebLogic.sh

_cfgwiz_donotdelete rmfilestore

bash-2.05#

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

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

solaris下weblogic创建weblogic域方法

solaris下weblogic使用技巧点滴

说明:服务器硬件:sun fire 280R

weblogic软件:weblogic 8.1 sp3

MAIL:solarisxb@hotmail.com

一、在solaris字符界面创建weblogic域方法:

* 到weblogic的安装目录下:

#cd /export/home/bea/weblogic81/common/bin

* 执行./config.sh命令

#./config.sh

* 字符界面如下:

Unable to instantiate GUI, defaulting to console mode.

<-----------BEA WebLogic Configuration Wizard ------->

Create or Extend a Configuration:

---------------------------------

Choose between creating and extending a configuration. Based on your selection, the Configuration Wizard guides you through the steps to generate a new or extend an existing configuration.

->1|Create a new WebLogic configuration

| Start here to create a WebLogic configuration in your projects |directory.

2|Extend an existing WebLogic configuration

| Start here to extend an existing WebLogic configuration. Use this |option to add

applications and services, including Database access

|(JDBC) and Messaging (JMS). This option also enables you to extend |functionality by enabling WebLogic Workshop.

Enter index number to select OR [Exit][Next]> 1

<----------BEA WebLogic Configuration Wizard -------------------> * 选择要创建的域:

Select a Domain Template:

-------------------------

Please select a template from the list or select another directory of templates.

* [/export/home/bea/weblogic81/common/templates/domains]

1|WebLogic Server Examples Domain 8.1.3.0

| BEA Systems, Inc.

| Create the WebLogic Server Examples domain in a directory outside of |the installed

kit. The Examples domain contains a collection of

|examples to show best practices for coding individual J2EE APIs. ->2|Basic WebLogic Server Domain 8.1.3.0

| BEA Systems, Inc.

| Create a basic WebLogic Server domain without installing sample |applications.

3|Basic WebLogic Workshop Domain 8.1.3.0

| BEA Systems, Inc.

| Create a basic WebLogic Workshop domain, without installing sample |applications. Domains created from this template will support the |WebLogic Server and WebLogic Workshop runtime functionality, including |support for J2EE

applications, Web applications, Web Services and

|custom controls. Use domains created from this template for |development of WebLogic Workshop applications.

4|Avitek Medical Records Sample Domain 8.1.3.0

Enter index number to select OR [Down][Exit][Previous][Next]> 2 <------------------- BEA WebLogic Configuration Wizard

------------------->

Choose Configuration Option:

----------------------------

*Do you want to run the wizard in express mode?

->1|Yes

2|No

Enter index number to select OR [Exit][Previous][Next]> 1

* 创建weblogic管理用户和密码:

<------------------- BEA WebLogic Configuration Wizard

------------------->

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. | Name | Value | _|_________________________|_________________________________| 1| *User name: | weblogic | 2| *User password: | | 3| *Confirm user password: | | 4| Description: | The default administration user | Select Option:

1 - Modify "User name"

2 - Modify "User password"

3 - Modify "Confirm user password"

4 - Modify "Description"

Enter option number to select OR [Exit][Previous][Next]> 2

<------------------- BEA WebLogic Configuration Wizard

------------------->

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. "*User password:" = []

Input new *User password: OR [Exit][Reset][Accept]>

<------------------- BEA WebLogic Configuration Wizard

------------------->

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. | Name | Value | _|_________________________|_________________________________| 1| *User name: | weblogic | 2| *User password: | ********** | 3| *Confirm user password: | | 4| Description: | The default administration user | Select Option:

1 - Modify "User name"

2 - Modify "User password"

3 - Modify "Confirm user password"

4 - Modify "Description"

5 - Discard Changes

Enter option number to select OR [Exit][Previous][Next]> 3

<------------------- BEA WebLogic Configuration Wizard

------------------->

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. "*Confirm user password:" = []

Input new *Confirm user password: OR [Exit][Reset][Accept]>

<------------------- BEA WebLogic Configuration Wizard

------------------->

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. | Name | Value | _|_________________________|_________________________________| 1| *User name: | weblogic | 2| *User password: | ********** |

3| *Confirm user password: | ********** | 4| Description: | The default administration user | Select Option:

1 - Modify "User name"

2 - Modify "User password"

3 - Modify "Confirm user password"

4 - Modify "Description"

5 - Discard Changes

Enter option number to select OR [Exit][Previous][Next]>

<------------------- BEA WebLogic Configuration Wizard

------------------->

* 选择要创建域Domain的模式:选择Production Mode模式

Domain Mode Configuration:

--------------------------

Enable Development or Production Mode for this domain.

->1|Development Mode

2|Production Mode

Enter index number to select OR [Exit][Previous][Next]> 2

<------------------- BEA WebLogic Configuration Wizard

------------------->

* Java环境选择:Java SDK Selection

Java SDK Selection:

-------------------

->1|JRockit SDK 1.4.2_04-8130 @ /export/home/bea/jrockit81sp3_142_04 2|Sun SDK 1.4.2_04 @ /export/home/bea/jdk142_04

3|Other Java SDK

Enter index number to select OR [Exit][Previous][Next]> 2

<------------------- BEA WebLogic Configuration Wizard

------------------->

* 选择domain的创建目录:

注:目录路径不需要写domain的名称,要不目录会重。

Select the target domain directory for this configuration:

----------------------------------------------------------

"Target Location" = [/export/home/bea/user_projects/domains]

Input new Target Location OR [Exit][Previous][Next]> /export/home/bea <------------------- BEA WebLogic Configuration Wizard

------------------->

Edit Domain Information:

------------------------

| Name | Value |

_|________|__________|

1| *Name: | mydomain |

Enter value for "Name" OR [Exit][Previous][Next]>

* 开始创建domain:

<------------------- BEA WebLogic Configuration Wizard

------------------->

Creating Domain...

0% 25% 50% 75% 100%

[------------|------------|------------|------------]

[***************************************************]

**** Domain Created Successfully! ****

*

* 备注:要是安装失败,会有提示的。

二、weblogic启动密码自动添加

1、存储加密后的用户身份,使用boot.properties文件来避免启动脚本中出现硬编码的用户身份。创建密码启动文件:boot.properties

#cd /export/home/bea/mydomain

2、写入登陆用户、密码:

# vi boot.properties

#Thu Jun 16 12:01:02 CST 2005

password=system

username=manager

3、系统会自动加密用户名和密码:

# vi boot.properties

#Thu Jun 16 12:01:02 CST 2005

password={3DES}rS5f2/lJowyEnrkv5Q14tA\=\=

username={3DES}RKPFkGopsVaY6aFXkOuAAA\=\=~

三、nohup方式自启动weblogic

1、在Unix中,使用 'nohup' 运行 WebLogic Server启动脚本,以保证即使您

注销以后,服务器依然在后台运行。为了防止weblogic启动以后,退出登陆窗口weblogic会停止,所以使用nohup方式。

2、在startWebLogic.sh文件中添加nohup和&后台符号。

# more startWebLogic.sh

nohup ${JAVA_HOME}/bin/java ${JAVA_VM} ${MEM_ARGS} ${JAVA_OPTIONS} -Dweblogic.Name=${SERVER_NAME}

-Dweblogic.ProductionModeEnabled=${PRODUCTION_MODE}

-Djava.security.policy="${WL_HOME}/server/lib/weblogic.policy"

weblogic.Server&

四、weblogic配置维护:

1、维护配置:

Weblogic的console是在浏览器中实现的访问方法 http://127.0.0.1:7001/console,如果需要登录的话

用户名:system

密码:manager

更多相关推荐:
Diogenes and Alexander 翻译

Lesson18DiogenesandAlesander他躺在光溜溜的地上赤着脚胡子拉茬的半裸着身子模样活像个乞丐或疯子可他就是他而不是别的什么人大清早他随着初升的太阳睁开双眼搔了搔痒便像狗一样在路边解手他在公...

Diogenes and Alexander 戴奥吉尼斯和亚历山大

GilbertHighetThisarticlebythelateclassicistGilbertHighetdescribesameetingbetweentwosharplycontrastingpers...

Diogenes and Alexander retelling第欧根尼和亚历山大

ThepassagecanbedevidedintotwopartsthefirstparttalksaboutDiogenesthesecondpartisaboutDiogenes39meetingwithAlexanderI...

大学英语(四)Diogenes and Alexander 戴奥吉尼斯和亚历山大

DiogenesandAlexander戴奥吉尼斯和亚历山大TheDogHasHisDayGilbertHighetThisarticlebythelateclassicistGilbertHighetdesc...

Thoughts After Diogenes and Alexander

TheQuestThatNeverEndsThisessayontheencounterofDiogenesandAlexanderisreallythoughtprovokingIknewalittleabouttheDoggi...

Diogenes_and_Alexander__戴奥吉尼斯和亚历山大

GilbertHighetThisarticlebythelateclassicistGilbertHighetdescribesameetingbetweentwosharplycontrastingpers...

Diogenes and Alexander

DiogenesandAlexanderLyingonthebareearthshoelessbeardedhalfnakedhelookedlikeabeggaroralunaticHewasonebutnottheotherH...

What made Alexander the Great

WhatmadeAlexandertheGreatAbstractAlexanderofMacedonknownasAlexandertheGreatwasaGreekkingofMacedonHewasthefirstkingt...

Diogense and Alexander

01LyingonthebareearthshoelessbeardedhalfnakedhelookedlikeabeggaroralunaticHewasonebutnottheotherHehadopenedhiseyesw...

The Paraphrase of Units 现代大学英语精读3单元重点句子

Unit1YourCollegeYears123456789Unit2HowReadingChangedMyLife12345678937Unit4DiogenesandAlexander12withafewhandfulsofw...

introductions of Diogenes and Alexander

introductionsofDiogenesandAlexander1TheworldsgreatestCynicDiogeneswasbornin412BCEinSinopeacityontheBlackSeaAsayoung...

Diogenes and Alexander

DiogenesandAlexander1LyingonthebareearthshoelessbeardedhalfnakedhelookedlikeabeggaroralunaticHewasonebutnottheother...

diogenes and alexander读后感(13篇)