Install Informatica PowerCenter 8.6 on Windows 7

2024-04-02 08:58

本文主要是介绍Install Informatica PowerCenter 8.6 on Windows 7,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Oracle的官网上有它OEM版的Informatica PowerCenter 8.6,支持以SQL Server数据库作为service master db:

http://www.oracle.com/technology/global/cn/software/products/ias/htdocs/101320bi.html

 

以上网页中的 <Informatica PowerCenter and PowerConnect Adapters 8.6> 段中file1为8.6的安装文件(包括server 和client),file2为hotfix4。在file2的Informatica PowerCenter 8.6.0 for Windows 32Bit目录下有个Oracle_All_OS_Prod.key文件,用于eva版本安装的licensing. 安装server端组件安装步骤:

 

1. 找到file1的PowerCenter_8.6.0_SE_for_Windows_32bitpc86_win32_x86目录下的install.bat,它将调用子目录下的安装程序(.ServerWindowsDisk1InstDataVMinstall.exe)。PowerCenter 没有为Win 7/Win 2008特别定制的版本,所以在Win7上装server端组件-> Create Domain的时候可能会遇到如下错误:

The installer able to create Domain but could not create the node.

Error:
Error Message:
cannot start Informatica Services. Use the error below and catalina.out and node.log in the server/tomcat/logs directory on the current machine to get more information. Select Retry to continue the installation.

EXIT CODE: S

 

但这时候部分Binary和registry已经被改动了,即使结束安装程序,之后也必须从Add/Remove Programs手动删除PowerCenter,删除完需要reboot。清理现场之后,可以将install.exe改为以WinXP SP2或者Win2000的兼容模式运行,再重新安装,就可以正常地Create Domain了。

2. 继续安装,在配置Informatica Service之后,还需要连接到这个domain。但是你会发现Informatica Service在启动5秒之后会自动停止,所以安装程序的ping domain无法完成。在C:InformaticaPowerCenter8.6.1servertomcatlog日志中可以看到如下错误:

2010-05-19 17:54:03,258 FATAL [main] [PCSF_10420] Failed to initialize the repository utility with native code because: [no pmjrepn in java.library.path].
java.lang.UnsatisfiedLinkError: no pmjrepn in java.library.path

 

解决方案是在System Variable的path中加上server的bin目录(默认为C:\Informatica\PowerCenter8.6.0\server\bin), 不需要重启,这个时候要到服务列表中

找到informatica service服务然后手动启动。直接Retry即可。


 

[2011-02-26更新]
  如果Windows 7上UAC开启的情况下安装PowerCenter Server, 还需要将installer.exe的admin privilege启用,如下图所示:



[转载]Install <wbr>Informatica <wbr>PowerCenter <wbr>8.6 <wbr>on <wbr>Windows <wbr>7

配置好之后再安装Informatica Service输入服务账号时,先选择用当前账号进行安装(因为上一步改变installer.exe的属性默认只是当前用户设置)。如果没有正确设置,则可能在安装Informatica服务时遇到如下错误:

Informatica Services Startup
===========================
Current time: 2011-Feb-26 21:49:32

Command Executed
----------------
"C:InformaticaPowerCenter8.6.0servertomcatbininfaservice.bat" install "InformaticaServices8.6.0" "Informatica Services 8.6.0" "InformaticaUser" "********"

Output of execution
-------------------
Output: Installing the service '"Informatica Services 8.6.0"' on node ******
Using CURRENT_DIR:      C:InformaticaPowerCenter8.6.0servertomcatbin
Using INFA_HOME:        C:InformaticaPowerCenter8.6.0
The service '"Informatica Services 8.6.0"' has been installed.

Error: The filename, directory name, or volume label syntax is incorrect.
The service name is invalid.

More help is available by typing NET HELPMSG 2185.


ExitCode: 2


Removing Informatica Services
==========================
Current time: 2011-Feb-26 21:49:32

Command Executed
----------------
"C:InformaticaPowerCenter8.6.0servertomcatbininfaservice.bat" remove "InformaticaServices8.6.0"

Output of execution
-------------------
Output: Removing the service 'Informatica Services' on node ********
The service 'Informatica Services' has been removed

Error: The service name is invalid.

More help is available by typing NET HELPMSG 2185.

The filename, directory name, or volume label syntax is incorrect.

ExitCode: 0

这篇关于Install Informatica PowerCenter 8.6 on Windows 7的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/869540

相关文章

基于Python开发Windows屏幕控制工具

《基于Python开发Windows屏幕控制工具》在数字化办公时代,屏幕管理已成为提升工作效率和保护眼睛健康的重要环节,本文将分享一个基于Python和PySide6开发的Windows屏幕控制工具,... 目录概述功能亮点界面展示实现步骤详解1. 环境准备2. 亮度控制模块3. 息屏功能实现4. 息屏时间

在Windows上使用qemu安装ubuntu24.04服务器的详细指南

《在Windows上使用qemu安装ubuntu24.04服务器的详细指南》本文介绍了在Windows上使用QEMU安装Ubuntu24.04的全流程:安装QEMU、准备ISO镜像、创建虚拟磁盘、配置... 目录1. 安装QEMU环境2. 准备Ubuntu 24.04镜像3. 启动QEMU安装Ubuntu4

Windows下C++使用SQLitede的操作过程

《Windows下C++使用SQLitede的操作过程》本文介绍了Windows下C++使用SQLite的安装配置、CppSQLite库封装优势、核心功能(如数据库连接、事务管理)、跨平台支持及性能优... 目录Windows下C++使用SQLite1、安装2、代码示例CppSQLite:C++轻松操作SQ

基于Python实现一个Windows Tree命令工具

《基于Python实现一个WindowsTree命令工具》今天想要在Windows平台的CMD命令终端窗口中使用像Linux下的tree命令,打印一下目录结构层级树,然而还真有tree命令,但是发现... 目录引言实现代码使用说明可用选项示例用法功能特点添加到环境变量方法一:创建批处理文件并添加到PATH1

Windows的CMD窗口如何查看并杀死nginx进程

《Windows的CMD窗口如何查看并杀死nginx进程》:本文主要介绍Windows的CMD窗口如何查看并杀死nginx进程问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地... 目录Windows的CMD窗口查看并杀死nginx进程开启nginx查看nginx进程停止nginx服务

Windows 系统下 Nginx 的配置步骤详解

《Windows系统下Nginx的配置步骤详解》Nginx是一款功能强大的软件,在互联网领域有广泛应用,简单来说,它就像一个聪明的交通指挥员,能让网站运行得更高效、更稳定,:本文主要介绍W... 目录一、为什么要用 Nginx二、Windows 系统下 Nginx 的配置步骤1. 下载 Nginx2. 解压

windows系统上如何进行maven安装和配置方式

《windows系统上如何进行maven安装和配置方式》:本文主要介绍windows系统上如何进行maven安装和配置方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不... 目录1. Maven 简介2. maven的下载与安装2.1 下载 Maven2.2 Maven安装2.

使用Python实现Windows系统垃圾清理

《使用Python实现Windows系统垃圾清理》Windows自带的磁盘清理工具功能有限,无法深度清理各类垃圾文件,所以本文为大家介绍了如何使用Python+PyQt5开发一个Windows系统垃圾... 目录一、开发背景与工具概述1.1 为什么需要专业清理工具1.2 工具设计理念二、工具核心功能解析2.

Windows Server 2025 搭建NPS-Radius服务器的步骤

《WindowsServer2025搭建NPS-Radius服务器的步骤》本文主要介绍了通过微软的NPS角色实现一个Radius服务器,身份验证和证书使用微软ADCS、ADDS,具有一定的参考价... 目录简介示意图什么是 802.1X?核心作用802.1X的组成角色工作流程简述802.1X常见应用802.

windows和Linux安装Jmeter与简单使用方式

《windows和Linux安装Jmeter与简单使用方式》:本文主要介绍windows和Linux安装Jmeter与简单使用方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地... 目录Windows和linux安装Jmeter与简单使用一、下载安装包二、JDK安装1.windows设