Tag Archives: Install

How to install PHP5, OCI8, GD, LDAP, ZEND on linux

This note apply to Red-Hat linux 64, but it’s close for all linux version.   1. Download and install RPM’s from Oracle Site :  http://oss.oracle.com/projects/php/files/EL5/x86_64 oracle-instantclient11.2-basic-11.2.0.2.0.x86_64.rpm php53-5.3.8-1.el5.x86_64.rpm php53-cli-5.3.8-1.el5.x86_64.rpm php53-common-5.3.8-1.el5.x86_64.rpm php53-gd-5.3.8-1.el5.x86_64.rpm php53-ldap-5.3.8-1.el5.x86_64.rpm php53-oci8-11gR2-5.3.8-1.el5.x86_64.rpm install using :   rpm -ivh   2. Create log dir : mkdir -p /etc/php.d/logs   3. Modify the php.ini :  (/etc/php.ini) 3.1 Enable […]

Tuning Linux OS Kernel Parameters for Oracle WebCache

This note is to increase the kernel parameters for better performance in tcp connection on Linux red-hat. First of all verify the system requirements to install WebCache in oracle.com, and check other required parameters like “kernel.sem” and  “kernel.shmall”. Tuning: Add in /etc/sysctl.conf net.ipv4.nonlocal_bind = 1 net.ipv4.tcp_timestamps = 0 net.ipv4.tcp_max_tw_buckets = 2000000 net.ipv4.tcp_sack = 0 net.ipv4.tcp_window_scaling […]

How to solve the error – ADVM/ACFS is not supported on epel-release-5-4

This issue is about Oracle Database 11g Release 2 Grid Infrastructure installation on linux Red Hat 5 x86_64 The error “ADVM/ACFS is not supported on epel-release-5-4” is one bug related a installed packages. Bug Evidence –  Look the packages (root user) rpm -qa |grep release Result: redhat-release-notes-5Server-36 epel-release-5-4 redhat-release-5Server-5.6.0.3 rpmforge-release-0.5.2-2.el5.rf NOTE: The Grid installation verify […]