cancel
Showing results for 
Search instead for 
Did you mean: 

BOE 3.1 Installation in AIX issiue

Former Member
0 Kudos

I've been trying for a new install in one of our AIX box and environment Details:

Product: - Business Objects XI 3.1

Operating System: - AIX lcakaixs17 3 5 00C4955E4C00

Database: - MySql (Default)

Getting the below error message after the post install script.

Summary of errors found during the installation :

/usr/BOE/XI31//setup/logs/BusinessObjects.12.1.log.summary

[error] [PostInstallScripts::WaitForCMS] CMS is not started, giving up.
[error] [InstallSDK::Product::doInstallActions] Core detected after action: PostInstallServers

Allso geting the following error message on ./ccm.sh -display:

boeadm@lcakaixs17:/usr/BOE/XI31/bobje#./ccm.sh -display
Creating session manager...
Logging onto CMS...
err: ERROR Couldn't logon to CMS (STU00152)
err: Error description: The system lcakaixs17.nzlc.co.nz can be contacted, but there is no Central Management Server running at port 6400.

ccm.config as follow:

#!/bin/sh
SERVICENAME_AUDIT="BOE120_AUDIT"
NAMESERVER="lcakaixs17"
DBTYPE="MySQL"
INSTALLTYPE="new"
REINIT="yes"
BOBJEVERSION="12.0"
SHUTDOWNPORT="8005"
REGFILE="/usr/BOE/XI31/bobje/data/.bobj"
DBTYPE_AUDIT="MySQL"
CLUSTER_NAMESERVER=""
CONNECTORPORT="8080"
SIAPORTNUMBER="6410"
BOBJELANG="en"
BOBJELICENSEKEY="C8Z0K-DXF1V2G-00U200M-P1X2"
MYSQLHOSTNAME="127.0.0.1"
cmsLAUNCH='"/usr/BOE/XI31/bobje/enterprise120/generic//bobjrestart.sh" -protect "/usr/BOE/XI31/bobje/enterprise120/aix_rs6000//boe_cmsd" -name sia.cms  -
loggingPath "/usr/BOE/XI31/bobje/logging/" -pidFile "/usr/BOE/XI31/bobje/serverpids/boeadm_cms.pid" -dbinfo "/usr/BOE/XI31/bobje/enterprise120/aix_rs6000
/_boe_sia.dbinfo" -restart -fg'
PRODUCTID_NAME="BusinessObjects"
PRODUCTID_VER="12.1"
LOCALNAMESERVER="lcakaixs17"
PIDDIR="/usr/BOE/XI31/bobje/serverpids"
CMSCLUSTER="no"
REDIRECTPORT="8443"
SIANODENAME="sia"
DEFAULT_NAMESERVER="lcakaixs17"
INSTALL_DIR="/usr/BOE/XI31/bobje/"
BOBJEUSERNAME="boeadm"
CMSNAMESERVER="lcakaixs17"
DATABASEUID="boeadm"
INSTALLMYSQL="yes"
BOBJEDIR="/usr/BOE/XI31/bobje/"
BOBJEINSTALLLOCAL="user"
SERVICENAME="BOE120"
CMSPORTNUMBER="6400"
CLUSTERPORTNUMBER="6400"
SERVICEPORT="3306"
SERVICEPORT_AUDIT="3306"
MYSQLHOSTNAME_AUDIT="127.0.0.1"

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

More info on that issue.

The Tomact and MySql running but when I tried to connect to the MySql getting the following error:

boeadm@lcakaixs17:/usr/BOE/XI31/bobje#./mysql/bin/mysql -u boeadm -p
Enter password:
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)

But get connected with the command below:

boeadm@lcakaixs17:/usr/BOE/XI31/bobje#./mysql/bin/mysql --socket=/usr/BOE/XI31/bobje/mysql/mysql.sock -u boeadm -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.0.46-enterprise MySQL Enterprise Server (Commercial)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql>

The database BOE120 is empty and the user tables as below:

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| BOE120             |
| BOE120_AUDIT       |
| mysql              |
| test               |
+--------------------+
5 rows in set (0.00 sec)

mysql> connect BOE120;
Connection id:    5
Current database: BOE120

mysql> show tables;
Empty set (0.00 sec)

mysql> connect mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Connection id:    6
Current database: mysql

mysql> select User Shutdown_priv, Process_priv, File_priv, Grant_priv from user;
+---------------+--------------+-----------+------------+
| Shutdown_priv | Process_priv | File_priv | Grant_priv |
+---------------+--------------+-----------+------------+
| root          | Y            | Y         | Y          |
| root          | Y            | Y         | Y          |
| root          | Y            | Y         | Y          |
| root          | Y            | Y         | Y          |
| boeadm        | Y            | Y         | Y          |
| boeadm        | Y            | Y         | Y          |
| boeadm        | Y            | Y         | Y          |
| boeadm        | Y            | Y         | Y          |
+---------------+--------------+-----------+------------+
8 rows in set (0.00 sec)

please let me know if you need anymore info.

Thanks

Nazmul