Weblogic部署项目步骤(weblogic怎么部署项目)

Weblogic部署项目步骤(weblogic怎么部署项目)

扫码添加渲大师小管家,免费领取渲染插件、素材、模型、教程合集大礼包!

WebLogic是Oracle公司出品的一个基于JAVAEE架构的中间件。用于开发。集成。部署和管理大型分布式Web应用。网络应用和数据库。那么Weblogic如何部署项目呢。这篇文章就为大家介绍下Weblogic部署项目步骤。

在WebLogic中部署项目通常有三种方式:第一。在控制台中安装部署;第二。将部署包放在domain域中autodeploy目录下部署;第三。使用域中配置文件config.xml 进行项目的部署。下面逐一为大家介绍。

一。控制台部署

1。启动WebLogic服务。登录到WebLogic控制台页面。输入用户名和密码。登录到控制台里面;

Weblogic部署项目步骤(weblogic怎么部署项目)

2。点击左侧的部署;

Weblogic部署项目步骤(weblogic怎么部署项目)

3。在右侧点击安装按钮。准备进行项目安装;

Weblogic部署项目步骤(weblogic怎么部署项目)

4 。看到路径输入框。可以在下面选择要部署的项目的位置;

Weblogic部署项目步骤(weblogic怎么部署项目)

5。 也可以直接输入要部署的包的位置。敲回车;

Weblogic部署项目步骤(weblogic怎么部署项目)

6。点击下一步即可;

Weblogic部署项目步骤(weblogic怎么部署项目)

7。继续下一步;

Weblogic部署项目步骤(weblogic怎么部署项目)

8。点击完成按钮;

Weblogic部署项目步骤(weblogic怎么部署项目)

9。 保存前面各步的设置;

Weblogic部署项目步骤(weblogic怎么部署项目)

10。保存完成后。会看到激活更改的提示。且不需要重启。

Weblogic部署项目步骤(weblogic怎么部署项目)

11。这时便可以进行测试了。输入项目名称。看到了项目的欢迎页面。即项目部署成功。

Weblogic部署项目步骤(weblogic怎么部署项目)

二。autodeploy自动部署

自动部署时不需要登录控制台。在domain域的主目录下面有个autodeploy目录。直接将项目包拷贝到autodeploy目录下面就可以了。

autodeploy目录里面有个readme.txt 文档。打开看一下。这里摘第一段出来

[html] view plain copy

This autodeploy directory provides a quick way to deploy applications
to a development server. When the WebLogic Server instance is running
in development mode, applications and modules in this directory are
automatically deployed.

主要说什么呢。就是开发模式下面。当WebLogic启动时。会自动部署autodeploy目录下面的项目。

将部署包servletDemo.war 丢到autodeploy目录下面。启动startWebLogic.cmd 。进行servletDemo的访问。依然可以看到欢迎页面。

Weblogic部署项目步骤(weblogic怎么部署项目)
三。config.xml配置文件部署

config.xml文件在domain域的config目录下面。config.xml主要配置了domain域的一些相关信息。我们要部署项目。该在哪里配置呢?

[html] view plain copy

<?xml version=’1.0′ encoding=’UTF-8′?>
<domain xmlns=”http://xmlns.oracle.com/WebLogic/domain” xmlns:sec=”http://xmlns.oracle.com/WebLogic/security” xmlns:wls=”http://xmlns.oracle.com/WebLogic/security/wls” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:schemaLocation=”http://xmlns.oracle.com/WebLogic/security/xacml http://xmlns.oracle.com/WebLogic/security/xacml/1.0/xacml.xsd http://xmlns.oracle.com/WebLogic/security/providers/passwordvalidator http://xmlns.oracle.com/WebLogic/security/providers/passwordvalidator/1.0/passwordvalidator.xsd http://xmlns.oracle.com/WebLogic/domain http://xmlns.oracle.com/WebLogic/1.0/domain.xsd http://xmlns.oracle.com/WebLogic/security http://xmlns.oracle.com/WebLogic/1.0/security.xsd http://xmlns.oracle.com/WebLogic/security/wls http://xmlns.oracle.com/WebLogic/security/wls/1.0/wls.xsd”>
<name>base_domain</name>
<domain-version>12.1.3.0.0</domain-version>
<security-configuration>
<name>base_domain</name>
<realm>
<sec:authentication-provider xsi:type=”wls:default-authenticatorType”>
<sec:name>DefaultAuthenticator</sec:name>
</sec:authentication-provider>
<sec:password-validator xmlns:pas=”http://xmlns.oracle.com/WebLogic/security/providers/passwordvalidator” xsi:type=”pas:system-password-validatorType”>
<sec:name>SystemPasswordValidator</sec:name>
<pas:min-password-length>8</pas:min-password-length>
<pas:min-numeric-or-special-characters>1</pas:min-numeric-or-special-characters>
</sec:password-validator>
</realm>
<default-realm>myrealm</default-realm>
<credential-encrypted>{AES}xLPXh4gcT6JErTB+toxRZ1pQpAS+MGMuqnnXzu/OsxWMQTB8152ggdbUlhkSXUGC9f959oL7tIzyZiu9XdeajlkK9vAu9cQlCKLLUaUMyl5Ty4C0uuJA99b14eR7oIu4</credential-encrypted>
<node-manager-username>WebLogic</node-manager-username>
<node-manager-password-encrypted>{AES}n3LLdgmAsocPRoYUrFfR2waWOlEz6KDFsp7+gByNeo8=</node-manager-password-encrypted>
</security-configuration>
<server>
<name>AdminServer</name>
<listen-address></listen-address>
</server>
<embedded-ldap>
<name>base_domain</name>
<credential-encrypted>{AES}21z8vCiCbuaYqsSj5t5+y6qvEY8dE3NdNr0zDG+K3EdwWEubzk9Vmx79Di43oxqX</credential-encrypted>
</embedded-ldap>
<configuration-version>12.1.3.0.0</configuration-version>
<admin-server-name>AdminServer</admin-server-name>
</domain>

我们的项目部署信息添加在configuration-version 和 admin-server-name 之间

[html] view plain copy

<configuration-version>12.1.3.0.0</configuration-version>
<app-deployment>
<name>servletDemo</name>
<target>AdminServer</target>
<module-type>war</module-type>
<source-path>C:\Users\ZhangQi\Desktop\servletDemo</source-path>
<security-dd-model>DDOnly</security-dd-model>
</app-deployment>
<admin-server-name>AdminServer</admin-server-name>

刚开始进行config.xml 配置文件部署的时候。出现了404。修改了下配置就可以了。将部署的war包解压为文件夹的形式。然后将 <module-type>war</module-type> 里面的war 修改为 dir 即可:

[html] view plain copy

<app-deployment>
<name>servletDemo</name>
<target>AdminServer</target>
<module-type>dir</module-type>
<source-path>C:\Users\ZhangQi\Desktop\servletDemo</source-path>
<security-dd-model>DDOnly</security-dd-model>
<staging-mode>nostage</staging-mode>
</app-deployment>

然后启动WebLogic服务即可。

分享到 :
相关推荐

美国高防服务器适用于哪些行业(美国高防服务器适用于哪些行业呢)

美国高防服务器适用的行业有:1。网站优化行业。可以抵御黑客攻击。保障网站安全;2。游...

服务器自动重启的原因及怎么排查(服务器自动重启原因排查方法)

服务器自动重启的原因及排查的方法:1。检查服务器是否被设置植入了自动重启木马。如果是...

使用无限流量的美国服务器有哪些优势

使用无限流量的美国服务器优势有:1。使用无限流量的美国服务器不用担心流量不够的问题。...

国外虚拟主机十大推荐(便宜的虚拟主机哪里有)

1、国外虚拟主机十大推荐在当今互联网的时代,虚拟主机成为了许多人建立网站的首选。在[...

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注