Posts

Error when checking composite operator: Output from subprocess: sh: g++: command not found

Error when checking composite operator: Output from subprocess: sh: g++: command not found sudo yum install gcc-c++ Issue willl resolve

How-to setup MSSQL JDBC on Linux for Dynamic Query Mode

Problem(Abstract) This document provides detailed steps how-to setup MSSQL JDBC on Linux Resolving the problem Requirement - procure sqljdbc_<currentversion>_[language] tar.gz from Microsoft: http://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=11774 In this description Version 4.0.2206.100 (English) is used - this Version is applicable for MSSQL Server 2005, 2008 and 2012. The following steps need to be done on every Cognos Instance that has an query service installed and active and is supposed to use the SQL Server as a DQM Datasource. The steps are derived from the Proven Practices DQM Cookbook: http://www.ibm.com/developerworks/data/library/cognos/infrastructure/cognos_specific/page529.html Be aware that neither Authentication via "IBM Cognos software service credentials" nor Authentication via "An external namespace" will work on Linux - as Microsoft provides sqljdbc_auth only as a .dll File which is not useable on Linux. Steps: 1. C...

IBM Cognos: XQE-JDB-0004 A problem occurred finding the driver class “com.ibm.db2.jcc.DB2Driver”

When you are trying to test the connection to the DB2 database from Cognos configuration and you are getting this error message: XQE-JDB-0004 A problem occurred finding the driver class "com.ibm.db2.jcc.DB2Driver". This error cause because the Cognos cannot find the DB2 drivers. Solution of this problem is simple. You have to copy files db2jcc.jar and db2jcc4.jar to <Install_Cognos>\v5dataserver\lib and <Install_Cognos>\webapps\p2pd\WEB-INF\lib. After you copy these files you need to restart the Cognos server.

Mounting VMFS with Ubuntu

Image
The vSphere platform is in my opinion the most complete package for the virtualized datacenter . One of my gripes about it is the manipulation of data in the VMFS file system.. its mostly controlled via the vSphere client, and going deep into CLI on the host itself .That isn't a problem when you live only in a vSphere world but sometimes, for debugging or troubleshooting, an extra tool to get the data off of VMFS wouldn't hurt. Thats where this tip comes in, there are tools out there that you can use on different operating systems to mount the VMFS datastore. For this article we are going to be using Ubuntu 11.04 desktop to mount a VMFS hard drive. First off, we are going to need the tools, these are called simply VMFS-TOOLS, and luckily we can get it with a simple apt-get sudo apt-get install vmfs-tools Now this is a package install, so there are 3 commands included in this package: vmfs-fuse debugvmfs fsck.vmfs For th...

Changing IIS 11.3 help links to refer to locally installed documentation

Changing help links to refer to locally installed documentation After you install and start your locally installed information center, you can use the iisAdmin command on the services tier computer to change the documentation location that the product help links refer to. (The ⇒ symbol indicates a line continuation): Windows IS_install_path \ASBServer\bin\iisAdmin.bat -set -key ⇒ com.ibm.iis.infocenter.url -value http://<host>:<port>/help/topic/ AIX® Linux IS_install_path /ASBServer/bin/iisAdmin.sh -set -key ⇒ com.ibm.iis.infocenter.url -value http://<host>:<port>/help/topic/ Where <host> is the name of the computer where the information center is installed and <port> is the port number for the information center. The default port number is 8888. For example, on a computer named server1.example.com that uses the default port, the URL value would be http://server1.example.com:8888/help/topic/ .

Setting up a locally-installed information center for InfoSphere Information Server Version 11.3

Product documentation Abstract IBM InfoSphere Information Server documentation is located in the IBM Knowledge center at http://www.ibm.com/support/knowledgecenter/SSZJPZ_11.3.0/ . However, if your organization does not provide access to the internet, you can install a local copy of the documentation as an information center. Content   Installing and uninstalling the information center You can install the IBM InfoSphere Information Server Information Center to your local machine for personal use, or you can install it on an internal server and access it from the network with an internal URL. Installing it on your personal machine allows you to view the content while you are disconnected from your network or while you have no access to the Internet. Installing it as a service on your internal network allows users on your internal network to view its content through a web browser. To install the information ce...

Run batch file as a Windows service

​ NSSM   is totally free and hyper-easy, running command prompt / terminal as administrator: nssm install "ServiceName" then a dialog will appear so you can choose where is the file you want to run. to uninstall nssm remove " ServiceName " ​ -- Thank You. Regards, Guru