`
com1com4
  • 浏览: 161626 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

Weblogic 10.3.6 服务注册脚本

 
阅读更多

为降低维护难度,把脚本分成两部分

1 把%WL_HOME%\server\bin的installSvc.cmd复制到域目录下,并进行修改:

@rem *************************************************************************
@rem This script is used to install WebLogic Server as a Windows Service.
@rem
@rem To create your own start script for your domain, simply set the 
@rem SERVER_NAME variable to your server name then call this script from your
@rem domain directory.
@rem
@rem This script sets the following variables before installing 
@rem WebLogic Server as a Windows Service:
@rem
@rem WL_HOME    - The root directory of your WebLogic installation
@rem JAVA_HOME  - Location of the version of Java used to start WebLogic 
@rem              Server. This variable must point to the root directory of a 
@rem              JDK installation and will be set for you by the installer. 
@rem              See the Oracle Fusion Middleware Supported System Configurations page 
@rem              (http://www.oracle.com/technology/software/products/ias/files/fusion_certification.html) 
@rem               for an up-to-date list of supported JVMs.
@rem PATH       - Adds the JDK and WebLogic directories to the system path.  
@rem CLASSPATH  - Adds the JDK and WebLogic jars to the classpath.  
@rem
@rem Other variables that installSvc takes are:
@rem
@rem WLS_USER     - admin username for server startup
@rem WLS_PW       - cleartext password for server startup
@rem ADMIN_URL    - if this variable is set, the server started will be a 
@rem                managed server, and will look to the url specified (i.e. 
@rem                http://localhost:7001) as the admin server.
@rem PRODUCTION_MODE    - set to true for production mode servers, false for 
@rem                development mode
@rem JAVA_OPTIONS - Java command-line options for running the server. (These
@rem                will be tagged on to the end of the JAVA_VM and MEM_ARGS)
@rem JAVA_VM      - The java arg specifying the VM to run.  (i.e. -server, 
@rem                -client, etc.)
@rem MEM_ARGS     - The variable to override the standard memory arguments
@rem                passed to java
@rem
@rem
@rem MAX_CONNECT_RETRIES - Number of attempts the Windows Service will make to check 
@rem                if the Weblogic Server is started. If this variable 
@rem                is specified along with HOST and PORT, the Windows Service will 
@rem                wait until the Weblogic Server is started.
@rem HOST         - IP address of the Weblogic Server  
@rem PORT         - Port number where the WebLogic Server is listening for requests 
@rem               
@rem jDriver for Oracle users: This script assumes that native libraries
@rem required for jDriver for Oracle have been installed in the proper
@rem location and that your system PATH variable has been set appropriately.
@rem 
@rem For additional information, refer to "Managing Server Startup and Shutdown for Oracle WebLogic Server"  
@rem (http://download.oracle.com/docs/cd/E23943_01/web.1111/e13708/overview.htm).
@rem *************************************************************************

@echo on
SETLOCAL

set DOMAIN_HOME=%~dp0
call "%DOMAIN_HOME%\setServiceEnv.cmd"

@rem Check that the WebLogic classes are where we expect them to be
:checkWLS
if exist "%WL_HOME%\server\lib\weblogic.jar" goto checkJava
echo The WebLogic Server wasn't found in directory %WL_HOME%\server.
echo Please edit your script so that the WL_HOME variable points 
echo to the WebLogic installation directory.
goto finish

@rem Check that java is where we expect it to be
:checkJava
if exist "%JAVA_HOME%\bin\java.exe" goto runWebLogic
echo The JDK wasn't found in directory %JAVA_HOME%.
echo Please edit your script so that the JAVA_HOME variable 
echo points to the location of your JDK.
goto finish

:runWebLogic

if not "%JAVA_VM%" == "" goto noResetJavaVM
if "%JAVA_VENDOR%" == "BEA" set JAVA_VM=-jrocket
if "%JAVA_VENDOR%" == "HP"  set JAVA_VM=-server
if "%JAVA_VENDOR%" == "Sun" set JAVA_VM=-server

:noResetJavaVM
if not "%MEM_ARGS%" == "" goto noResetMemArgs
set MEM_ARGS=-Xms32m -Xmx200m

:noResetMemArgs

@echo on

set CLASSPATH=%WEBLOGIC_CLASSPATH%;%CLASSPATH%

@echo ***************************************************
@echo *  To start WebLogic Server, use the password     *
@echo *  assigned to the system user.  The system       *
@echo *  username and password must also be used to     *
@echo *  access the WebLogic Server console from a web  *
@echo *  browser.                                       *
@echo ***************************************************

rem *** Set Command Line for service to execute within created JVM

@echo off

if "%ADMIN_URL%" == "" goto runAdmin
@echo on
set CMDLINE="%JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS% -classpath \"%CLASSPATH%\" -Dweblogic.Name=%SERVER_NAME% -Dweblogic.management.username=%WLS_USER% -Dweblogic.management.server=\"%ADMIN_URL%\" -Dweblogic.ProductionModeEnabled=%PRODUCTION_MODE% -Djava.security.policy=\"%WL_HOME%\server\lib\weblogic.policy\" weblogic.Server"
goto finish

:runAdmin
@echo on
set CMDLINE="%JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS% -classpath \"%CLASSPATH%\" -Dweblogic.Name=%SERVER_NAME% -Dweblogic.management.username=%WLS_USER% -Dweblogic.ProductionModeEnabled=%PRODUCTION_MODE% -Djava.security.policy=\"%WL_HOME%\server\lib\weblogic.policy\" weblogic.Server"

:finish
rem *** Set up extrapath for win32 and win64 platform separately
if "%WL_USE_X86DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\32;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\32\oci920_8

if "%WL_USE_IA64DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\64\;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\64\oci920_8

if "%WL_USE_AMD64DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\x64\;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\x64\oci920_8

rem *** Install the service
"%WL_HOME%\server\bin\beasvc" -install -svcname:"beasvc %DOMAIN_NAME%_%SERVER_NAME%" -javahome:"%JAVA_HOME%" -execdir:"%USERDOMAIN_HOME%" -maxconnectretries:"%MAX_CONNECT_RETRIES%" -host:"%HOST%" -port:"%PORT%" -extrapath:"%EXTRAPATH%" -password:"%WLS_PW%" -cmdline:%CMDLINE%

ENDLOCAL

 2 域目录下创建setServiceEnv.cmd, 变量根据实际情况修改

set WL_HOME=D:\Oracle\Middleware\wlserver_10.3
set DOMAIN_NAME=base_domain
set SERVER_NAME=AdminServer
set USERDOMAIN_HOME=D:\Oracle\Middleware\user_projects\domains\base_domain
set WLS_USER=weblogic
set WLS_PW=weblogic123
set PRODUCTION_MODE=true

set USER_MEM_ARGS=-Xms1g -Xmx2g
call "%USERDOMAIN_HOME%\bin\setDomainEnv.cmd"

 

3 运行installSvc.cmd即可完成注册

分享到:
评论

相关推荐

    weblogic 10.3.6 安全补丁

    3. **补丁应用流程**:通常,补丁的安装包括停止WebLogic服务、复制补丁文件到指定位置、更新配置文件、执行安装脚本以及重启服务等步骤。遵循安装手册的指示,可以避免在更新过程中遇到的问题。 4. **版本兼容性**...

    Weblogic10.3.6(wls1036_generic.jar)安装包linux,windows,mac操作系统通用百度网盘下载

    export WL_HOME=/path/to/Weblogic10.3.6 export PATH=$WL_HOME/bin:$PATH ``` ##### 5. 启动管理控制台 完成安装后,可以通过浏览器访问WebLogic Server的管理控制台,通常地址为:`...

    linux + weblogic10.3.6 集群部署及配置

    此外,集群内的负载均衡和故障转移也需要正确配置,这通常通过WebLogic的集群服务来实现,它可以自动将工作负载分发到可用的服务器,并在某个服务器出现故障时将工作负载转移到其他服务器。 在实际部署中,还需要...

    weblogic 10.3.6补丁 20180717

    WebLogic Server 10.3.6 是Oracle公司的一款企业级Java EE应用服务器,它提供了用于构建、部署和管理企业应用程序的全面平台。这个“weblogic 10.3.6补丁 20180717”是针对WebLogic Server 10.3.6版本的一个重要更新...

    Weblogic10.3.6 for AIX安装手册

    java -jar weblogic10.3.6_aix.jar -mode=console ``` 按照安装向导的提示进行操作: - **选择安装路径**:默认安装路径为`/weblogic/Oracle/Middleware`。 - **选择安装类型**:选择自定义安装(`Custom`模式)。 -...

    weblogic10.3.6补丁(java反序列化漏洞更新步骤).docx

    * 修改更新脚本:`cd /app/weblogic/Oracle/Middleware/utils/bsu` * 编辑 bsu.sh 文件,添加以下内容: ```bash #!/bin/sh JAVA_HOME="/usr/java/jdk1.6.0_37" MEM_ARGS="-Xms256m -Xmx1024m -XX:-...

    weblogic10.3.3之后版本升级至weblogic10.3.6文档.docx

    ### WebLogic 10.3.3 至 10.3.6 升级指南 #### 一、概述 本指南旨在详细介绍如何从WebLogic Server 10.3.3及其后续版本升级到10.3.6版本的具体步骤。升级过程中需要考虑的因素以及必要的准备措施也将被涵盖。 ###...

    Weblogic10.3.6 for Linux安装手册

    - **执行安装命令**:进入安装包所在目录后,运行`java -jar weblogic10.3.6_aix.jar -mode=console`开始安装进程。这里选择了控制台模式进行安装。 - **安装路径**:默认安装路径为`/weblogic/Oracle/Middleware`,...

    weblogic 10.3.6 2020年10月补丁包 p31641257_1036_Generic.zip

    WebLogic Server 10.3.6 是甲骨文公司提供的一个企业级Java应用程序服务器,它主要用于构建、部署和管理企业级的Java EE应用程序。2020年10月发布的补丁包“p31641257_1036_Generic.zip”是为了提升WebLogic Server...

    weblogic-10.3.6 220719补丁

    通常,这涉及到停止单个WebLogic Server实例或整个域,运行补丁安装脚本,然后重新启动服务以使更改生效。在安装过程中,用户应密切关注任何错误消息,并确保在补丁应用后进行必要的测试,以确认系统功能正常且没有...

    Linux下命令行安装运行weblogic10.3.6.docx

    - 命令行方式通常使用`startWebLogic.sh`脚本。 2. **配置网络服务:** - 根据实际需求配置WebLogic Server的监听端口和服务地址。 3. **部署应用程序:** - 可以通过Web控制台或命令行工具将Java应用程序部署...

    weblogic10.3.6_GENM补丁

    "weblogic10.3.6的最新补丁(2018.11).txt" 文件可能是补丁的说明文档,其中包含了详细的更新内容、安装指南、可能遇到的问题及解决方案。用户在处理补丁时应该仔细阅读此文档,以了解补丁带来的改进和注意事项。 ...

    linux安装weblogic 10.3.6

    1. **设置安装包权限**:为了让 `weblogic` 用户能够执行安装脚本,需要修改安装包的权限: ``` [weblogic@rac1 ~]$ chmod u+x wls1033_generic.jar ``` 2. **启动安装程序**:接下来使用 `java` 命令启动安装...

    weblogic10.3.6补丁2022年第一季度(202201)

    因此,"weblogic10.3.6补丁2022年第一季度(202201)"是为了解决自上一个补丁发布以来发现的问题,特别是安全方面的隐患。 这个补丁可能包含以下内容: 1. **安全修复**:修复已知的安全漏洞,防止恶意攻击者利用...

    Linux下命令行安装weblogic10.3.6

    具体方法是在命令行中执行`startWebLogic.sh`脚本。 - **Q: 是否可以在其他Linux发行版上使用此安装方法?** A: 本教程中的安装步骤适用于大多数Linux发行版,只要确保满足上述前提条件即可。 #### 六、总结 ...

    WEBLOGIC 10.3.6.0.210119 - 2021年1月补丁

    补丁的版本号"10.3.6.0.210119"表明这是针对WebLogic Server 10.3.6版本的一个安全增强,"210119"可能表示2021年1月19日发布的日期。用户应及时安装此补丁,以防止未授权访问和攻击。 WebLogic Server的补丁通常...

    Linux系统安装Weblogic服务.docx编程资料

    ### Linux系统下Weblogic服务安装与配置详解 #### 一、引言 随着企业级应用的发展,Java EE标准成为构建大型分布式应用的重要基石之一。Oracle WebLogic Server作为一款高性能、可伸缩性强的企业级Java EE容器,被...

    安装反序列化漏洞补丁文档 for WebLogic10 3 6

    ### 安装反序列化漏洞补丁文档 for WebLogic 10.3.6 #### 知识点一:前期准备工作的重要性与步骤 - **重要性**:在安装任何补丁之前,做好充分的前期准备至关重要。这不仅有助于确保整个补丁安装过程顺利进行,还...

Global site tag (gtag.js) - Google Analytics