Posts

The requested URL was not found - permalink error

When I update the permalinks to anything but default, links in the site give the error The requested URL ### was not found on this Server . Enable rewrite_module in apache Introduction In this tutorial, we will activate and learn how to manage URL rewrites using Apache2's mod_rewrite module. This tool allows us to rewrite URLs in a cleaner fashion, translating human-readable paths into code-friendly query strings. This guide is split into two halves: the first sets up a sample web application and the second explains commonly-used rewrite rules. Prerequisites To follow this tutorial, you will need: One fresh Ubuntu 14.04 Droplet A sudo non-root user, which you can set up by following steps 2 and 3 of this tutorial Step 1 — Installing Apache In this step, we will use a built-in package installer called apt-get . It simplifies management drastically and facilitates a clean installation. First, update the system's package index. This will ens...

How to change the default location of the Information Server Reporting workspace.

Technote (FAQ) Question How can I change the drive or path of the Reporting workspace directory to a different location than where Information Server creates it by default? Cause The Information Server Reporting workspace is used at run time for holding temporary status and information related to report generation. The amount of space required varies depending on the number, types and complexity of reports created. In some cases, the default location of the Reporting workspace does not have adequate space so it may be necessary to relocate to a different location. When the workspace is located in a tmp directory location, it could potentially be vulnerable to being deleted or files removed as part of some system administrator or user maintenance activity. To avoid this problem you may wish to change the default reporting workspace to a different directory. Answer The default reporting workspace location is dif...

Information Server Web Console error: Failed to Save Report

Technote (troubleshooting) Problem(Abstract) When creating and saving a report the Information Server Web Console is returning the error message "Failed to Save Report" Symptom Review the System.out log to look for the message: com.ascential.acs.reporting.ReportingEngineException: /tmp/informationServer/Reporting<machine_name>Node01server1/engine/JREPORT/realm/defaultRealm/dhtmlPreference.properties (No such file or directory) Cause The error occurs when the JReport workspace directory in the Information Server is deleted Diagnosing the problem Check to see if the JReport workspace exists For Information Server 8.1 the default directory is located under /<InformationServer_Install_Dir>/ASBServer/apps/Reporting/engine/JREPORT For Information Server 8.5 and later the default directory is located under /tmp/informationServer/Reporting<machine_name>Node01serve...

How to enable ssh root access on Ubuntu 14.04

​Set the password for root account and followed by below step.​ You also need to edit   /etc/ssh/sshd_config , and comment out the following line: PermitRootLogin without-password Just below it, add the following line: PermitRootLogin yes Then restart SSH: service ssh restart

Create a swap space using file in RHEL or Centos

$ sudo dd if=/dev/zero of=/swapfile bs=1M count=1024 $ sudo mkswap /swapfile $ sudo chmod 600 /swapfile $ sudo swapon /swapfile $ sudo vim /etc/fstab Add this line to fstab: swap /swapfile swap defaults 0 0 ​

Installing compat-libstdc++-33 on RHEL 7 AWS EC2

You need to enable the RHEL optional and/or extras channels. yum-config-manager --enable rhui-REGION-rhel-server-extras rhui-REGION-rhel-server-optional

log Files location in OBIEE 12c

File Locations: 11g: Upgrade log:  Middleware\Oracle_BI1\upgrade\logs Admin Server log files:  [MW_HOME]\user_projects\domains\bifoundation_domain\servers\AdminServer\logs Managed Server log files:  [MW_HOME]\user_projects\domains\bifoundation_domain\servers\bi_server1\logs BI Server log files: [MW_HOME]\instances\instance1\diagnostics\logs\OracleBIServerComponent\coreapplication_obis1 Presentation Server log file: [MW_HOME]\instances\instance1\diagnostics\logs\OracleBIPresentationServicesComponent\coreapplication_obips1 12c: Upgrade log:  ORACLE_HOME\user_projects\domains\bi\servers\obips1\logs Admin Server log files: ORACLE_HOME\user_projects\domains\bi\servers Managed Server log files:  ORACLE_HOME\user_projects\domains\bi\servers BI Server log files: ORACLE_HOME\user_projects\domains\bi\servers\obis1\logs Presentation Server log file: ORACLE_HOME\user_projects\domains\bi\servers\obips1\logs