Hyperion11.1.1.3启动顺序 批处理针对share services,essbase,planning ,financial report ,web analysis worksapce ,epma等
说明,因为11.1.1.3里需要启动一个workagent的组件,所以这里这节调用workagent的批处理以启动
如果是各个组件都装在一台服务器上,也可以直接采用sc start "servername" choice /n /t 10 /d y的命令启动
操作步骤:打开记事本,复制一下代码,保存为startServices.bat即可
代码如下:([url=file://\\server[/url]\\server[/url]为各服务所在的服务器名称,机器名和IP都可,推荐IP)
说明 : 和为论坛自带,全部替换为空
@echo off
REM 启动 Hyperion Apache 2.0 服务                    
net start "HyS9Apache2"
REM 启动 Hyperion Annotation Server服务
sc 
\\server  start "HyS9Annotation" choice /n /t 10 /d y
REM 启动Hyperion Foundation OpenLDAP                                       
sc 
\\server  start "OpenLDAP-slapd" choice /n /t 10 /d y
REM 启动Hyperion Foundation Shared Services - Web Application服务          
sc 
\\server  start "HyS9SharedServices"  choice /n /t 10 /d y
REM 启动Hyperion RMI Registry服务                  
sc 
\\server  start "Hyperion RMI Registry" choice /n /t 10 /d y
REM 启动Hyperion Workspace - Web Application服务      
sc 
\\server  start "HyS9Workspace"  choice /n /t 10 /d y
REM 启动Hyperion EPM Architect - Process Manager服务            
sc 
\\server  start "HyS9BPMA_ProcessManager" choice /n /t 10 /d y
REM 启动Hyperion EPM Architect - Web Application服务 
sc 
\\server  start "HyS9EPMAWebTier" choice /n /t 10 /d y
REM 启动Hyperion EPM Architect Data Synchronization - Web Application服务
sc 
\\server  start "HyS9EPMADataSynchronizer"  choice /n /t 10 /d y
REM 启动Hyperion Essbase Services 11.1.1 - hypservice_1服务
sc 
\\server  start  "HyS9ESBAgent11.1.1_hypservice_1" choice /n /t 10 /d y
REM 启动Hyperion Administration Services - Web 应用程序服务
sc 
\\server  start  "HyS9eas"  choice /n /t 10 /d y
REM 启动Hyperion Planning - Web 应用程序服务
sc 
\\server  start  "HyS9Planning"  choice /n /t 10 /d y
REM 启动Hyperion Provider Services - Web Application服务
sc 
\\server  start "HyS9aps" choice /n /t 10 /d y
REM 启动Hyperion CALC Manager - Web 应用程序服务   
sc 
\\server  start "HyS9CALC" choice /n /t 10 /d y
REM 启动Hyperion Financial Reporting - Java RMI Registry服务   
sc 
\\server  start "HyS9FRRMI"    choice /n /t 10 /d y
REM 启动Hyperion Financial Reporting - Report Server服务
sc 
\\server  start "HyS9FRReport"  choice /n /t 10 /d y
REM 启动Hyperion Financial Reporting - Print Server服务
sc 
\\server  start "HyS9FRPrint"   choice /n /t 10 /d y
REM 启动Hyperion Financial Reporting - sc [url=file://\\serverheduler]\\serverheduler  Server服务
sc 
\\server  start "HyS9FRsc [url=file://\\serverhed]\\serverhed "  choice /n /t 10 /d y
REM 启动Hyperion Financial Reporting - Web Application服务    
sc 
\\server  start "HyS9FRWeb"    choice /n /t 10 /d y
REM 启动Hyperion Web Analysis - Web Application 服务
sc 
\\server  start "HyS9WebAnalysis" choice /n /t 10 /d y
rem 启动WorkAgent服务 
call C:\Hyperion\common\workspacert\9.5.0.0\bin\startAgent.bat start
rem @ ping -n 5 127.0.0.1>nul
exit /b