安装配置 IBM FileNet 所遇问题记录系列 之四 检查AE,PE, CE 状态是否正常.doc_第1页
安装配置 IBM FileNet 所遇问题记录系列 之四 检查AE,PE, CE 状态是否正常.doc_第2页
安装配置 IBM FileNet 所遇问题记录系列 之四 检查AE,PE, CE 状态是否正常.doc_第3页
安装配置 IBM FileNet 所遇问题记录系列 之四 检查AE,PE, CE 状态是否正常.doc_第4页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

安装配置 IBM FileNet 所遇问题记录系列 之四 检查AE,PE, CE 状态是否正常在Install & Config 完 IBM FileNet之后,一个重要的事情就是check所安装的AE,PE,CE是否安装正确、能够正常启动。 这里,简要列出一些check方法。1. 启动 CE DB . 与CE有关的一般有两个 DB。 一个 是 FNGCDDB用于记录 CE Domain的一些配置信息。 主要有以FNGCD为 prefix 的四个表(FNGCD, FNGCD_ADDON, FNGCD_CESERVERS, FNGCD_OSCBROWNERS)。 当你有需要想重新建立CE Domain的时候,最好将这四个表删掉,然后重新建。 再一个DB就是 Object Store所在的DB,比如FNOS1DB. 在这个DB中,在建完Domain之后共有179张表。 值得注意的是,CE App Server是通过 DataSource来连接CE的DB的。所以,如果,有任何CE DB的改变,也同时需要更改DataSource。 显而易见,因为有两个 CE DB,所以也有两套CE DataSource, 一个是用于连接 FNGCDDB(还有个以XA结尾的,这个在运行时经常被用到),一个是用于连接FNOSDB,即Object Store DB。CE 就是靠这两个Source来取得CE 信息的。 Check CE 状态的方法: http:/localhost:9080/FileNet/Engine.2. 启动 AE。由于 AE是一个 WebApp 程序,所以只需要启动 AE所在的 Server即可。 Check AE 状态的方法: http:/localhost:9080/Workplace3. 启动 PEPE 核心是一个 C+程序。在运行时, AE会尝试连接 PE,CE,而PE和CE之间也有连接关系。Windows based 的PE server需要注意有两个系统 Service(通过 Service.msc)是需要起来的。 一个 叫 PE Service Manager,一个是Img ControlService;需要检查;再有一个 重要的命令是 initfnsw,可以通过这个命令来起停 PE server。 initfnsw start /-启动PE initfnsw stop /-停止PE killfnsw -y /-停止PE initfnsw status /-查看PE状态 initfnsw restart /-重启PE另外, 检查 PE的状态,可以用这个URL 来 check,http:/localhost:32776/IOR/ping.另外,有关 PE 和 CE间连接性的检查方法:在 PE所在 Server上,用如下URL check,http:/localhost:32776/IOR/FileNet.CE.PEDirectoryServerA good sample response from the PEDirectoryServer looks something like this:IOR:000000000000002049444c3a46696c654e65745f63656d707270632f63656d707270633a312e300000000001000000000000007e000102000000000c31302e31352e372e31303800071d000000000031afabcb000000002084240cba00000001000000000000000100000008526f6f74504f41000000000800000001000000001400000000000002000000010000001800000000050100010000000000010109000000010001010000000026000000020002此外,quick test are (on PE server):If youre having trouble with the PE to CE communications, there may be something wrong with the java environment. Try the following tests in a command prompt window on the PE Server (Substituting appropriate host names, ports, user names, group names, and passwords as appropriate for your configuration):On your PE Server:cd fnswbinTry a basic little pipe ping:fnswjavajrebinjava -classpath pe.jar;pe3pt.jar filenet.pe.ceorb.test.PEDirectoryClientTest /port=32776 /rpc=pingSet the little pipes CE connection configuration:fnswjavajrebinjava -classpath pe.jar;pe3pt.jar filenet.pe.ceorb.test.PEDirectoryClientTest /port=32776 /rpc=setConfig /uri=http:/hqbpm34:7001/wsi/FNCEWS40DIME/ /user=PEAdmin /password=secretGet a list of all realm names:fnswjavajrebinjava -classpath pe.jar;pe3pt.jar filenet.pe.ceorb.test.PEDirectoryClientTest /port=32776 /rpc=getRealmNamesGet info about a user named PEAdmin:fnswjavajrebinjava -classpath pe.jar;pe3pt.jar filenet.pe.ceorb.test.PEDirectoryClientTest /port=32776 /rpc=getUserInfo /user=PEAdminGet info about a user named PEAdmin in a specific realm:fnswjavajrebinjava -classpath pe.jar;pe3pt.jar filenet.pe.ceorb.test.PEDirectoryClientTest /port=32776 /rpc=getUserInfo /user=PEAdmin /realm= dc=epbdc,dc=eng,dc=filenet,dc=comGet info about a group named PEAdministrators:fnswjavajrebinjava -classpath pe.jar;pe3pt.jar filenet.pe.ceorb.test.PEDirectoryClientTest /port=32776 /rpc=getUserInfo /user=PEAdministratorsGet “group expansion info” for a group named PEAdministrators:fnswjavajrebinjava -classpath pe.jar;pe3pt.jar filenet.pe.ceorb.test.PEDirectoryClientTest /port=32776 /rpc=expandGroup /group=PEAdministratorsThe above runs should produce output of some sort that might shed light on a CE configuration or connection problem取得 PE run 的 LOG:Get some detailed information about the PE to CE communicationsIf the PE still can not get connected to the CE, we need to enable some of the java tracing to see whats happening when the PEDirectoryServer communicates with the CE.For PE 4.0.2 and newer, including PE 4.5To enable the tracing, we need an perties file in the fnswjavajrelib directory on the PE Server. The perties file needs to include a line something like this:log4j.logger.filenet.pe.ceorb.server=DEBUG, TXTThe easiest way to do this is to copy the fnsw_perties.sample file as perties (without the “.sample”). Then, using a simple text editor (e.g., notepad), add the “, TXT” to the above line of text in the perties file.The PEDirectoryServer will see the perties file and that will trigger additional tracing and logging to occur. After putting the perties file in the fnswjavajrelib directory, click the Apply button in the Process Task Managers Security tab again.After it fails, check the java trace file. The loca

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论