如何在weblogic集群上部署web应用程序

如何在weblogic集群上部署web应用程序,weblogic,weblogic12c,Weblogic,Weblogic12c,我已经在server1上配置了web应用程序。在配置中,我选择我的集群(server1和server2)作为目标服务器。我想了解的是,您是否还需要在server2上配置部署?server2中没有war文件,我有点好奇这个应用程序如何在server2上运行。不,weblogic将自动处理部署到两个托管服务器的过程 部署过程可以通过三种方式完成 1.舞台 2.怀旧 3.伸展阶段 以下是WebLogic中登台模式的说明: 舞台模式- The Administration Server

我已经在server1上配置了web应用程序。在配置中,我选择我的集群(server1和server2)作为目标服务器。我想了解的是,您是否还需要在server2上配置部署?server2中没有war文件,我有点好奇这个应用程序如何在server2上运行。

不,weblogic将自动处理部署到两个托管服务器的过程

部署过程可以通过三种方式完成

1.舞台 2.怀旧 3.伸展阶段

以下是WebLogic中登台模式的说明:

舞台模式-

         The Administration Server copies the archive files from their source location to a location on each of the targeted Managed Servers that deploy the archive. For example, if you deploy a J2EE Application to three servers in a cluster, the Administration Server copies the application archive files to each of the three servers. Each server then deploys the J2EE Application using its local copy of the archive files. 
         The Administration Server does not copy the archive files from their source location. Instead, each targeted server must access the archive files from a single source directory for deployment. For example, if you deploy a J2EE Application to three servers in a cluster, each server must be able to access the same application archive files (from a shared or network-mounted directory) to deploy the application. 
      External_stage mode is similar to stage mode, in that the deployment files must reside locally to each targeted server. However, the Administration Server does not automatically copy the deployment files to targeted servers in external_stage mode; instead, you must manually copy the files, or use a third-party application to copy the files for you. 
在部署到多个WebLogic服务器实例时,阶段模式是默认模式

怀旧模式-

         The Administration Server copies the archive files from their source location to a location on each of the targeted Managed Servers that deploy the archive. For example, if you deploy a J2EE Application to three servers in a cluster, the Administration Server copies the application archive files to each of the three servers. Each server then deploys the J2EE Application using its local copy of the archive files. 
         The Administration Server does not copy the archive files from their source location. Instead, each targeted server must access the archive files from a single source directory for deployment. For example, if you deploy a J2EE Application to three servers in a cluster, each server must be able to access the same application archive files (from a shared or network-mounted directory) to deploy the application. 
      External_stage mode is similar to stage mode, in that the deployment files must reside locally to each targeted server. However, the Administration Server does not automatically copy the deployment files to targeted servers in external_stage mode; instead, you must manually copy the files, or use a third-party application to copy the files for you. 
仅部署到管理服务器(例如,在单个服务器域中)时,Nostage模式是默认模式。如果在同一台计算机上运行服务器实例集群,也可以选择nostage模式

外级模式-

         The Administration Server copies the archive files from their source location to a location on each of the targeted Managed Servers that deploy the archive. For example, if you deploy a J2EE Application to three servers in a cluster, the Administration Server copies the application archive files to each of the three servers. Each server then deploys the J2EE Application using its local copy of the archive files. 
         The Administration Server does not copy the archive files from their source location. Instead, each targeted server must access the archive files from a single source directory for deployment. For example, if you deploy a J2EE Application to three servers in a cluster, each server must be able to access the same application archive files (from a shared or network-mounted directory) to deploy the application. 
      External_stage mode is similar to stage mode, in that the deployment files must reside locally to each targeted server. However, the Administration Server does not automatically copy the deployment files to targeted servers in external_stage mode; instead, you must manually copy the files, or use a third-party application to copy the files for you. 

希望对您有所帮助。

我的weblogic是非阶段模式……在构建应用程序后是否需要重新启动weblogic?