Informatica Server端安装【Windows版本】

一、安装前准备工作

在安装Informatica之前,需先确保已安装Oracle

如果还没有安装Oracle,可以参考以下链接进行安装:https://blog.csdn.net/qq_36448452/article/details/112557596

1、在Oracle中创建两个用户
(1)infa_repo:普通用户
(2)infa_domain:域用户

CMD登录oracle:

C:\Users\Admin>sqlplus / as sysdba

SQL*Plus: Release 11.2.0.1.0 Production on 星期三 1 13 18:31:48 2021

Copyright (c) 1982, 2010, Oracle.  All rights reserved.


连接到:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL>

执行:

create user infa_repo identified by infa_repo;
create user infa_domain identified by infa_domain;

2、给用户赋权
Informatica安装过程中要创建域,在这个过程中会在infa_ domain所在的用户下面(也就是你输入的用户)创建表与视图等等,因此需要赋予一下权限。infa_repo与infa_ domain 都要赋予权限。

(1)给infa_repo赋权:

grant create session,resource to infa_repo;
grant create any view to infa_repo;
grant create procedure to infa_repo;
grant create view to infa_repo;
grant create sequence to infa_repo;
grant create SYNONYM to infa_repo;
grant EXECUTE ANY PROCEDURE to infa_repo;
grant unlimited tablespace to infa_repo;

(2)给infa_domain赋权:

grant create session,resource to infa_domain;
grant create any view to infa_domain;
grant create procedure to infa_domain;
grant create view to infa_domain;
grant create sequence to infa_domain;
grant create SYNONYM to infa_domain;
grant EXECUTE ANY PROCEDURE to infa_domain;
grant unlimited tablespace to infa_domain;

3、下载软件包
(1)打开官网,如下图所示找到相应软件包:
https://edelivery.oracle.com/osdc/faces/SoftwareDelivery

(2)选择对应的版本:Windows x64

(3)选中下面4个选项,点击Download

(4)点击download之后会下载一个可执行文件,运行这个可执行文件,即可开始下载相应的软件包:

(5)下载完成之后,就是下面4个.zip压缩文件:红色框框部分。
然后同时选中这4个.zip压缩文件,右击解压至当前目录下,生成4个文件(3个分卷文件、1个.zip压缩文件):绿色框框部分。

(6)保持3个【分卷文件】不动,单独选中.zip文件并解压,可以解压到当前目录下,也可以解压到指定的一个文件夹中,这里是解压到当前目录下的dac_win_11g_infa_win_64bit_961文件中

(7)打开dac_win_11g_infa_win_64bit_961文件,选中961_Server_Installer_winem-64t.zip压缩包,继续进行解压,解压到961_Server_Installer_winem-64t文件中

(8)打开961_Server_Installer_winem-64t文件,双击install.bat开始进行安装……

二、开始安装

双击install.bat开始进行安装:

1、配置基本信息

(1)选择【安装或升级到Informatica 9.6.1】

(2)选择【安装Informatica 9.6.1 HotFix 1】

(3)指定【密钥文件】和安装目录

密钥文件就是上面的Oracle_All_OS_Prod.key文件:

(4)直接点击下一步

(5)直接点击安装

2、等待一段时间后安装完成,开始配置【Informatica域信息】

(1)选择要【创建域】还是【加入(现有)域】,新安装一般选择【创建域】,取消选中“启用HTTPS”的选项(一般内网使用不需要HTTPS)

(2)配置域资料库:infa_ domain(域用户)

注:【数据库用户ID】和【用户密码】一定要保证是对的,可以使用PL/SQL客户端工具测试一下该用户名和密码是否能够正确连接登录!

(3)关键字 && 密钥存放路径

(4)填写域相关信息,创建管理员密码(如果勾选“显示高级端口配置项”则下一步可以配置动态端口范围等信息)

注意:如果这里点击【下一步】之后报域名配置错误,可能是因为没有给【域用户infa_domain】授权:

grant create session,resource to infa_domain;
grant create any view to infa_domain;
grant create procedure to infa_domain;
grant create view to infa_domain;
grant create sequence to infa_domain;
grant create SYNONYM to infa_domain;
grant EXECUTE ANY PROCEDURE to infa_domain;
grant unlimited tablespace to infa_domain;

也可能是因为我的【域密码】和【域用户名】配置的不相同导致的域名配置错误,因为有另一种说法说:【域密码】和【域用户名】都是【Administrator】。

(5)配置是否在其他用户下运行Informatica服务,一般不选。

(6)安装完成

3、检查
打开浏览器访问:http://notebook8:6008/
或者在【开始菜单】找到下面的选项,直接点击一下也可以打开网页登录界面:

网页登录界面如下:

登录成功后的页面如下所示:

三、可能遇到的问题
重启计算机之后发现 http://notebook8:6008 网页打不开或者报错!

排查步骤:
(1)首先运行services.msc命令打开计算机的【服务】界面

(2)查看informatica是否启动:

(3)查看oracle是否启动:

如果都启动了,稍微等待一段时间,再重新打开 http://notebook8:6008 网页。因为informatica服务的启动时间可能需要根据个人计算机的配置情况而定!!!

本文地址:https://blog.csdn.net/qq_36448452/article/details/112581743

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐