informatica 客户端9.6.1 R客户端关闭时,提示遇到不适当的参数,关不掉,怎么解决啊

Informatica9.6.1在Linux Red Hat 5.8上安装遇到的问题整理
时间: 02:15:28
&&&& 阅读:1716
&&&& 评论:
&&&& 收藏:0
标签:&&&&&&&&&前言:
本文针对Informatica在Linux?Red?Hat5.8上的安装过程中遇到的问题进行整理。
1.??产品安装过程中提示无法创建Domain([ICMD_10033] Command [defineDomain] failed with error [[INFASETUP_10002])
?1)错误日志:
[ICMD_10033] Command [defineDomain] failed with error [[INFASETUP_10002] Cannot create the domain because of the following error: [OSGIWRAPPER_00001] Internal error. A repository internal error occurred: ‘[OSGIWRAPPER_00003] Internal error. A repository internal error occurred while installing the bundle from the following location:
‘/opt/infa/Informatica/9.6.1/plugins/dynamic/com.informatica.adapter.teradata.connection.modelRegistration_1.0.0.jar‘: ‘An error occurred trying to read the bundle‘. Contact Informatica Global Customer Support.‘. Contact Informatica Global Customer Support..].
?2)问题分析及解决步骤:
Infa产品在安装时需要nofile参数值至少16K以上,系统参数的限制可以使用ulimit命令进行查看。
步骤如下:
通过扩大nofile参数的限制,至少16K(16000)。
第一步,修改文件 /etc/security/limits.conf。
??? vi /etc/security/limits.conf
??? 加上:
??? * soft nofile 8192
??? * hard nofile 20480
第二步,修改 /etc/pam.d/login 文件,确保存在以下内容
??????? session required /lib/security/pam_limits.so
??? 另外确保/etc/pam.d/system-auth文件有下面内容
??? session required /lib/security/$ISA/pam_limits.so
??? 这一行确保系统会执行这个限制。
第三步,登录infa用户,执行 #ulimit -n 1024。
?3)参考内容:
1. Re: [ICMD_10033] Command [defineDomain] failed with error?
sujata kumari?
PC Express Professional
? sujata kumari? Aug 4,
AM? (in response to user144134)?
There can be couple of reasons for this failure:
1. if the installer is corrupt and is not extracted properly. To isolate this, please try downloading and extracting the installer again.
But before this, please verify:
1. nofiles/file descriptor value: this value should be more than 16k for 9.6 installation.
You can use the command ulimit -a to get this value.
2. We also get this error when there is insufficient disk space. Please verify this using: df -k
2.?产品安装过程提示Ping?Domain?Error?
1)错误日志:
Pinging domain... 8:19:22 AM
**********************************
Command Executed : /opt/infa/Informatica/9.6.1/isp/bin/infacmd.sh? ping -dn Domain_mdm -dg mdm:6005 -re 300?
Exit Code : 255
OutPut : [ICMD_10033] Command [ping] failed with error [[INFACMD_10053] [[JSF_0055] Cannot connect to the domain [Domain_mdm] to look up the service [/coreservices/DomainService]. Check the port number, host name, or service name. Ensure that network connectivity is established.Domain [Domain_mdm] Host:Port [mdm:6005] ] did not ping back. It might be due to one of the following reasons:
=& Domain might not be running.
=& Domain name, host name or port number might be incorrect.
=& If the domain is in TLS mode with non default SSL certificate then environment variables INFA_TRUSTSTORE and INFA_TRUSTSTORE_PASSWORD might be set to incorrect values or Truststore might not have correct domain certificate.].
2)解决办法:?
将Infa安装目录下的Java环境变量添加到Path目录
编辑infa用户下的.bash_profile文件
export PATH=$INFA_HOME/java/jre/bin:$PATH
保存后执行
Source .bash_profile
[infa@mdm ~]$ java -version
java version "1.7.0_55"
Java(TM) SE Runtime Environment (build 1.7.0_55-b13)
Java HotSpot(TM) 64-Bit Server VM (build 24.55-b03, mixed mode)
Thanks for your interest to solve this problem.
I am sucessed to solve this problem.
Here are the steps i followed to resolve.
The Informatica services stops autmatically,? thats why the Installer unable to ping the domain.
I go in to the Event Viewer for the services i found java run time environment not found.
(Java runtime environment allredy installed in my mechine)
I found that the environment variable for this JRE not present in the path.
I updated the path Evironment variable by the installed location of the JRE.
then bounce the server and I did the installations again.
This time Installer ping the domain sucessfully.
?3.Repository Service启动后的页面编码问题
1)错误信息:
2)原因分析及解决步骤
原因分析:?informatica产品安装背后AdminConsole的Code?page默认为UTF-8,若此时创建存储库服务采用的字符集编码为简体中文,就会导致存储库服务无法正常启动。必须确保两者是一致的。
步骤如下:?
第一步,设置infa的AdminConsole’s Code page为“MS936”。
在安装完infa后,编辑.bash_profile文件,添加以下配置。
export LANG=C
export LC_ALL=C
export PM_CODEPAGENAME="MS936"
export INFA_HOME=/opt/infa/Informatica/9.6.1
export INFA_DOMAINS_FILE=$INFA_HOME/domains.infa
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$INFA_HOME/server/bin:
/home/oracle/app/oracle/product/11.2.0/dbhome_1/lib
保存后执行
Source .bash_profile 使其生效
第二步,重启PowerCenter服务。
Cd $INFA_HOME/tomcat/bin
./infaservice.sh shutdown
./infaservice.sh startup
检查服务启动情况
Netstat –an | grep 6005
第三步,删除旧的存储库服务。
第四步,删除并新建存储库服务对应的数据库用户(因为里面已经有内容,必须要重建)。
---DROP USER
DROP USER INFA_REP CASCADE;
---CREATE USER
CREATE USER INFA_REP
IDENTIFIED BY INFA_REP;
GRANT CONNECT,RESOURCE,CREATE VIEW TO INFA_REP;
第五步,新建存储库服务,并指定Code page为Ms Windows Simplified Chinese.
4.创建Integration Service后无法启动
1)错误日志:
2)解决办法:
进入Repository Service的属性页面,将其运行模式改成Normal。
?标签:&&&&&&&&&原文:http://luoxiaohui-java.iteye.com/blog/2176921
教程昨日排行
&&国之画&&&& &&&&&&
&& &&&&&&&&&&&&&&
鲁ICP备号-4
打开技术之扣,分享程序人生!显示一个对话框时 提示遇到不适当的参数
[问题点数:20分,结帖人cjvscj]
显示一个对话框时 提示遇到不适当的参数
[问题点数:20分,结帖人cjvscj]
不显示删除回复
显示所有回复
显示星级回复
显示得分回复
只显示楼主
2011年 总版技术专家分年内排行榜第三2010年 总版技术专家分年内排行榜第三
2012年 总版技术专家分年内排行榜第五
2013年2月 移动平台大版内专家分月排行榜第三
匿名用户不能发表回复!|informatica9.6.1 服务端 必须和oracle搭配吗_百度知道
informatica9.6.1 服务端 必须和oracle搭配吗
我有更好的答案
  Informatica PowerCenter用于访问和集成几乎任何业务系统、任何格式的数据,它可以按任意速度在企业内交付数据,具有高性能、高可扩展性、高可用性的特点。Informatica PowerCenter包括4个不同版本,即:标准版,实时版,高级版,云计算版。同时,它还提供了多个可选的组件,以扩展Informatica PowerCenter的核心数据集成功能,这些组件包括:数据清洗和匹配、数据屏蔽、数据验证、Teradata双负载、企业网格、元数据交换、下推优化(Pushdown Optimization)、团队开发和非结构化数据等。  Informatica 9.6版本所具备的全新功能让开发和部署各种各样的数据项目变得更为简洁,其中包括日常集成项目、新云端以及大数据项目。  全新的 9.6 平台拥有完全集成的快速开发功能,可以快于竞争对手或传统方式五倍的速度交付业务价值。  环境参数:  1.操作系统:Windows7 旗舰(64位)  2.数据库:
Oracle 11g(自行安装并创建表空间和用户)  3.数据库字符集:SIMPLIFIEDCHINESE_CHINA.ZHS16GBK  4.安装介质:Informatica9.15.安装正式Key或者测试Key  配置属性说明:  ? Enable HTTPS for Informatica Administrator:主要是在Informatica Administrator和Service Manager之间建立一个安全的连接。如果使用HTTP连接,则去掉这个选项。  ? Port:这个端口主要用于Informatica Administrator和Service Manager之间的通讯。  ? Use a keystore generated by the installer:使用安装程序产生的一个自签名的密钥文件。安装程序创建一个名为DEFAULT的密钥文件。这个密钥在下面的路径中:InstallationDirectory\tomcat\conf\  ? Use an existing keystore:使用一个已经创建的密钥文件。可以使用一个带有自签名证书的密钥文件,也可以使用经认证授权机构认证签名的密钥文件。  ? Keystore password:密钥文件的纯文本密码。使用密钥文件时必须要创建密码。  ? Keystore file directory:密钥文件的路径。使用密钥文件时必须指定。  相关配置属性说明:  ? Database type:域所在数据库的类型。主要有Oracle,MicrosoftSQL Server和IBM DB2三种。  ? Database user ID:创建域所用到的数据库用户ID。  ? User password:创建域用到的数据库用户对应的密码。  ? Tablespace:当在IBM DB2中创建域时用到的选项。主要指需要在哪个表空间中创建资料库的表。如果是空的,安装程序将会在默认的表空间中创建资料库表。在一个单独的表空间中创建资料库会获得更佳的性能。  ? Database Address:数据库实例的主机名和端口号。格式为:Host name:port  ? Database service name:Oracle和IBM DB2的服务名(注意oracle的服务名不是tnsname),或者是Microsoft SQL Server的数据库名。  ? JDBC parameters:包含在数据库连接串中的可选参数。使用参数来配置数据库以获得最佳的数据库运行。可以使用默认的参数,或者基于数据库需求来增加或者修改参数。如果没有选择,安装程序将会创建不带参数的JDBC连接串。如果要修改默认的参数,可以点击“Default”来返回到由安装程序提供的默认参数串。  ? Custom JDBC Connection String:提供一个完整的JDBC连接串,确保连接串要包含数据库系统所需要的所有的参数。  这一步的节点主机是自己的计算机名,要能保证cmd下ping的通。  在Windows环境下,安装程序会创建一个Windows服务来启动Informatica。默认情况下,该服务会运行在安装它时所用的那个用户下。你可以用不同的用户来运行Windows服务,格式是:DomainName\UserAccount  安装的过程看似很简单,然而我第一次安装的时候安装了三遍都没安装成功,这之间有很多问题,比如数据库tns问题,domain问题,操作系统的host文件问题等等,由于失败的次数太多,而自己还稀里糊涂的不知道哪里的问题,安装infa然我养成了安装过程截图保存的习惯,不管安装什么服务,例如sql server ,oracle 为了日后的备忘,都做了截图日志。
为您推荐:
换一换
回答问题,赢新手礼包
个人、企业类
违法有害信息,请在下方选择后提交
色情、暴力
我们会通过消息、邮箱等方式尽快将举报结果通知您。跪求informatica9.0.1客户端
[问题点数:40分]
跪求informatica9.0.1客户端
[问题点数:40分]
不显示删除回复
显示所有回复
显示星级回复
显示得分回复
只显示楼主
匿名用户不能发表回复!|Informatica9.6.1关闭服务后再开启,无法正常访问服务
[问题点数:50分]
Informatica9.6.1关闭服务后再开启,无法正常访问服务
[问题点数:50分]
不显示删除回复
显示所有回复
显示星级回复
显示得分回复
只显示楼主
匿名用户不能发表回复!|

我要回帖

更多关于 战网客户端无法关闭 的文章

 

随机推荐