Posts

Showing posts from January, 2019

To perform the requested action wordpress needs to access your web server. please enter your ftp

This means that WordPress is having limited permission for making changes in the folder that it was installed. In-order to fix this, all that you need to do is provide necessary permissions for the same. Run the following Command in your Terminal / Putty / Commandline Prompt after connecting to your Server via SSH: sudo chown - R apache : apache / var / www / html

IBM InfoSphere DataStage and QualityStage Operations Console session expires after approximately 12 hours, even if it is being used at that time.

Resolving The Problem The automatic session expiry can not be prevented. However, you can change the session expiry time.The default session expiry is set to 760 minutes. Use the WebSphere Application Server admin console to change the expiry time: 1) Open the WebSphere Application Server web admin console (https://<domain>:9043/ibm/console/login.do?action=secure) and login as the WebSphere administrative user (not the Information Server administrative user) 2) Open the Security -> Global security pane from the left hand tree 3) Open the LTPA link in the content pane 4) Change the 'LTPA timeout" value from 760 to the desired value. 5) Stop and restart WebSphere Application Server

Information Server EngMonApp fails with java.lang.OutOfMemoryError

Resolving The Problem To resolve the issue, you need to increase the maximum heap size for EngMonApp by following these steps: 1. Log into server as dsadm or root. 2. cd InformationServerRoot/Server/DSODB/bin/utils_private/ 3. Back up the DSEngMonApp.sh file cp -p DSEngMonApp.sh DSEngMonApp.sh.bak 4. Edit DSEngMonApp.sh file to increase -Xmx384m, for example to -Xmx896m (896 megabytes). #$APW_NOHUP_CMD "$JAVA" -DPSMARKER=$PSMARKER -Xmx384m -classpath "$CLASSPATH" com.ibm.datastage.runtime.engmonapp.EngMonApp 1>&2 & $APW_NOHUP_CMD "$JAVA" -DPSMARKER=$PSMARKER -Xmx896m -classpath "$CLASSPATH" com.ibm.datastage.runtime.engmonapp.EngMonApp 1>&2 & You may need to try different -Xmx values until you find an adequate heap size. 5. Restart EngMonApp by starting the DataStage AppWatcher service: InformationServerRoot/Server/DSODB/bin/DSAppWatcher.sh -start on unix as the DataStage administration user (e.g. dsadm).