Tag: CentOS

CentOS 5.5 – Install PostgresSQL 9

FrançaisLinuxTutorials

Paramètres de configuration

Il s’agit ici de paramètres qu’il vous faudra adapter à vos besoins :
Admin postgres : admin / adminPassword
Répertoire de stockage des base de données : /home/postgres/data
Réseau local : 192.168.2.0

Pré-requis
CentOS 5.5 – Base install
CentOS 5.5 – Install réseau
CentOS 5.5 – Le firewall

Installation PostgresSQL 9

Commençons par installer 2 librairies qui Keep reading

CentOS 5.5 – Install PHP

FrançaisLinuxTutorials

This install requires postgresql to be installed… You can remove the –with-pgsql=/usr/local/pgsql from the ./configure line if you don’t want to use it…

yum install -y gd libxml libtiff mrtg libxslt-devel libxml2-devel libjpeg-devel libpng-devel

cd ~
wget -c http://fr.php.net/get/php-5.3.3.tar.gz/from/fr2.php.net/mirror
tar zxvf php-5.3.3.tar.gz

cd php-5.3.3/
./configure --prefix=/usr/local/php-5.3.3 --with-apxs2=/usr/local/apache/bin/apxs --with-gd --with-zlib --enable-sockets --with-jpeg-dir=/usr --with-png-dir=/usr --with-zlib --enable-gd-native-ttf --enable-mbstring=all --enable-magic-quotes --with-gettext --with-pgsql=/usr/local/pgsql --enable-libxml --with-xsl=/usr/lib

make clean
make
make install
cd /usr/local/
rm -f /usr/local/php
ln -s /usr/local/php-5.3.3/ /usr/local/php
cp ~/php-5.3.3/php.ini-production /usr/local/php/lib/php.ini
cd ~/
rm -Rf ~/php-5.3.3/

chown -R root.www /usr/local/php
chmod -R g-w,o-rwx /usr/local/php 

CentOS 5.5 – Le firewall

FrançaisLinuxTutorials

——————————————————————————–

Paramètres de configuration

Il s’agit ici de paramètres qu’il vous faudra adapter à vos besoins :
Réseau local : 192.168.2.0

——————————————————————————–

Pré-requis

  • CentOS 5.5 Base install
  • CentOS 5.5 install réseau

——————————————————————————–

Configuration du firewall

Nous allons utiliser iptable et tout est déjà Keep reading