Error Installing Tivoli Directory Server (TDS) for TNPMW1.3

Technote (troubleshooting)

Problem(Abstract)

Errors related to 'idsinst' instance thrown during TDS setup phase when installing TNPMW1.3.

Symptom

The following errors can be found in the tds_install_xxxxx.log in /var/install/logs/ :-

GLPCTL004E Failed to create database instance: 'idsinst'. The failure  might have occurred because the system was not set up correctly before  using the tool.  GLPICR033E Failed to add database instance 'idsinst' to directory server  [Mon Oct 17 12:34:46 IST 2011]: Error creating LDAP instance  [Mon Oct 17 12:34:46 IST 2011]: Setting Admin DN to cn=Directory  Manager...  GLPCTL087E The directory server instance 'idsinst' does not exist.  GLPDPW013W The program did not complete successfully. View earlier error  messages for information about the exact error.  [Mon Oct 17 12:34:46 IST 2011]: Error setting administration DN  [Mon Oct 17 12:34:46 IST 2011]: Configuring LDAP DB2 database for  idsinst in /appl/idsinst...  GLPCTL087E The directory server instance 'idsinst' does not exist.  GLPCDB026W The program did not complete successfully. View earlier error  messages for information about the exact error.  [Mon Oct 17 12:34:46 IST 2011]: ERROR: the LDAP database could not be  configured using the credentials specified.  [Mon Oct 17 12:34:46 IST 2011]: You may have entered the incorrect  password for the idsinst user.  [Mon Oct 17 12:35:08 IST 2011]: Configuring LDAP DB2 database for  idsinst in /appl/idsinst...  GLPCTL087E The directory server instance 'idsinst' does not exist.  GLPCDB026W The program did not complete successfully. View earlier error  messages for information about the exact error.  [Mon Oct 17 12:35:08 IST 2011]: ERROR: the LDAP database could not be  configured using the credentials specified.  [Mon Oct 17 12:35:08 IST 2011]: You may have entered the incorrect  password for the idsinst user.  [Mon Oct 17 12:35:11 IST 2011]: Exiting. Installation incomplete 
where xxxxx corresponds to the installation process id. Issue ls -lrt command and look at the most bottom log for the recent installation process.

Resolving the problem

The domain name needs to be set correctly. Follow the Installation Guide refer to "Pre-Installation tasks" chapter. Necessary steps needed are noted below:-
+> Procedures

1. Run the following command as root user: -

# grep domain /etc/resolv.conf

If DNS domain is configured, you will see output like the following:

domain this.domain.com

If DNS domain is not being used, set up the domain name by completing the following:- 
a. As user root on the servers, check to see if the domain name is set by executing the following command:

# domainname

If nothing is returned, the domain is not set.

b. To set the domain, run the following command:-

# domainname <domain>

<domain> is the selected domain name for the system, for example, ibm.com. 
2. Do one of the following based on your platform:- 
(a) On Solaris:- 
i. Edit the /etc/hosts file and change the  <hostname>.domainname entry to the local hostname appended with the domainname. The entry in /etc/hosts should be similar to the following:-

<IP address> <hostname>.<domainname> <hostname> loghost

ii. Add the domain name to the /etc/defaultdomain file:-

<domainname>

(b) On Linux application servers that are using DNS:-

i. Edit the /etc/hosts file. If the entry for localhost in /etc/hosts looks like the following:-

127.0.0.1 <hostname>.<domainname> <hostname> localhost.localdomain localhost

Please change the localhost entry so that it looks like the following:-

127.0.0.1 localhost.localdomain localhost

ii. If the system is not using DNS, add the following line to /etc/hosts

<IP address> <hostname>.<domainname> <hostname>

(c) On AIX:- 
i. Make sure the entry in /etc/hosts is as following:-

<p><IP address> <hostname> <hostname>.<domainname></p>

If the entry does not conform to this format edit the file.

For further assistance and info,kindly contact IBM Support.

Error Installing Tivoli Directory Server (TDS) for TNPMW1.3的更多相关文章

  1. centos directory server

    http://www.aliyun.com/zixun/content/3_12_517262.html CentOS系统安装Directory Server 8.1操作方法 发布时间:2014-12 ...

  2. cygwin安装sshd服务(win7)Error installing a service: OpenSCManager: Win32 error 5:

    Error installing a service: OpenSCManager: Win32 error 5:           出现这个问题的解决办法:win7系统管理员运行Cygwin软件 ...

  3. Runtime Error---Description: An application error occurred on the server....

    [原]Runtime Error---Description: An application error occurred on the server.... 2010-1-7阅读2010 评论3 D ...

  4. 使用cocoapods install友盟时报错Error installing UMengAnalytics

    报错: [!] /usr/bin/unzip /Users/soindy/Documents/SmartThermo/ios/SmartThermo/Pods/UMengAnalytics/file. ...

  5. Installing Office Online Server for SharePoint 2016

    Office Online Server is the next version of the Office Web Apps, which allows your users to view and ...

  6. SQLyog恢复数据库报错解决方法【Error Code: 2006 - MySQL server has gone away】

    https://blog.csdn.net/niqinwen/article/details/8693044 导入数据库的时候 SQLyog 报错了 Error Code: 2006 – MySQL ...

  7. 关于 ReactNative 环境搭建之 error: invalid developer directory '/Library/Developer/CommandLineTools' - RN

    简要说明,此次尝试安装 ReactNative 时当前 MacPro 版本为 10.13.6.Xcode 版本为 Version 9.4.1 (9F2000),按照官方的完整原生环境搭建流程一步步执行 ...

  8. nova instance出错:"message": "Proxy error: 502 Read from server failed

    执行 $ nova resize instance1 时候出错: {, "details": " File \"/opt/stack/nova/nova/com ...

  9. 解决:ERROR: Cannot launch Jack server

    问题重现: Install: /home/dinphy/sm/out/target/product/ido/system/lib/libdl.so java -Xmx3500m -jar /home/ ...

随机推荐

  1. MongoDB学习笔记(6)--find

    MongoDB 查询文档 MongoDB 查询文档使用 find() 方法. find() 方法以非结构化的方式来显示所有文档. 语法 MongoDB 查询数据的语法格式如下: db.collecti ...

  2. Win7 安装 MongoDB

    MongoDB 下载 MongoDB 提供了可用于 32 位和 64 位系统的预编译二进制包,你可以从MongoDB官网下载安装,MongoDB 预编译二进制包下载地址:https://www.mon ...

  3. 【转】标准C++类std::string的内存共享和Copy-On-Write技术

    1.             概念 Scott Meyers在<More Effective C++>中举了个例子,不知你是否还记得?在你还在上学的时候,你的父母要你不要看电视,而去复习功 ...

  4. 全相FFT

    作者:桂. 时间:2017-12-02  23:29:48 链接:http://www.cnblogs.com/xingshansi/p/7956491.html 一.相位提取 以正弦信号为例,x = ...

  5. 案例:用Redis来存储关注关系

    Redis提供了丰富的数据类型,比起关系型数据库或者简单的Key-Value存储(比如Memcached)来,Redis的数据模型与实际应用的数据模型更相近.比如下面说到的好友关系的存储,原作者使用了 ...

  6. Hudson基本工作原理

    从SVN下载代码到hudson服务器本地  ->  将SVN下载的源代码,利用maven[maven依赖pom.xml]或者ant[ant依赖build.xml]打包(war包),pom.xml ...

  7. Vivado下生成及烧写MCS文件

    Jtag模式: 1.打开Open Hardware Manager 2. Tools ->Auto Connect 3.TCL输入: write_cfgmem -format MCS -size ...

  8. Windows 以管理员运行而不提示

    组策略中设置一下:“计算机配置”-“Windows 配置”-“安全设置”-“本地策略”-“安全选项”下:修改“用户帐户控制: 在管理审批模式下管理员的提升提示行为”选项为“提示凭据”就会再弹出提示框了 ...

  9. 【Unity】6.2 在VS2015中调试 C# 脚本

    分类:Unity.C#.VS2015 创建日期:2016-04-16 一.简介 这一节先利用GUI显示一个简单的界面(以后还会专门介绍GUI),并解释如何在VS2015中调试C#脚本. 本节例子的运行 ...

  10. JAVA中转义字符

    JAVA中转义字符 2010年08月11日 星期三 上午 12:22 JAVA中转义字符: 1.八进制转义序列:\ + 1到3位5数字:范围'\000'~'\377'       \0:空字符 2.U ...