Recent Changes - Search:

Softwares

.

InstallApache2PHP5AndMysqlOnUbuntuUsingAptgetCommand

Main.InstallApache2PHP5AndMysqlOnUbuntuUsingAptgetCommand History

Hide minor edits - Show changes to markup

January 08, 2008, at 12:25 AM by 15.219.201.70 -
Added lines 3-27:
apt-get install  apache2 php5-mysql libapache2-mod-php5 mysql-server
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  apache2-mpm-prefork apache2-utils apache2.2-common libapr1 libaprutil1
  libdbd-mysql-perl libdbi-perl libmysqlclient15off libnet-daemon-perl
  libplrpc-perl libpq5 mysql-client-5.0 mysql-common mysql-server-5.0
  php5-common
Suggested packages:
  apache2-doc php-pear dbishell libcompress-zlib-perl mysql-doc-5.0 tinyca
Recommended packages:
  mailx
The following NEW packages will be installed:
  apache2 apache2-mpm-prefork apache2-utils apache2.2-common
  libapache2-mod-php5 libapr1 libaprutil1 libdbd-mysql-perl libdbi-perl
  libmysqlclient15off libnet-daemon-perl libplrpc-perl libpq5 mysql-client-5.0
  mysql-common mysql-server mysql-server-5.0 php5-common php5-mysql


Others:

June 17, 2007, at 01:38 PM by 61.17.224.18 -
Added lines 6-8:
  • Check http://mirror3.ubuntulinux.nl/ with your current version of Ubuntu before adding the above line
June 17, 2007, at 01:33 PM by 61.17.224.18 -
Changed lines 3-8 from:
 cp /etc/apt/sources.list /etc/apt/sources.list.orig
 sed -i -e "s/# deb/deb/g" /etc/apt/sources.list
 echo "deb http://mirror3.ubuntulinux.nl/ dapper-seveas freenx" >> /etc/apt/sources.list
 wget http://mirror3.ubuntulinux.nl/1135D466.gpg -O- | sudo apt-key add -
 apt-get update
to:
  cp /etc/apt/sources.list /etc/apt/sources.list.orig
  sed -i -e "s/# deb/deb/g" /etc/apt/sources.list
  echo "deb http://mirror3.ubuntulinux.nl/ dapper-seveas freenx" >> /etc/apt/sources.list
  wget http://mirror3.ubuntulinux.nl/1135D466.gpg -O- | sudo apt-key add -
  apt-get update
Changed lines 11-15 from:
 apt-get update
 apt-get install  apache2 libapache2-mod-php5 mysql-server libapache2-mod-auth-mysql php5-mysql php5
 a2enmod php5
 /etc/init.d/apache2 restart
to:
  apt-get update
  apt-get install  apache2 libapache2-mod-php5 mysql-server libapache2-mod-auth-mysql php5-mysql php5
  a2enmod php5
  /etc/init.d/apache2 restart
Changed lines 20-24 from:
 apt-get update
 apt-get install php4 libapache2-mod-php4 mysql-server libapache2-mod-auth-mysql php4-mysql
 sudo a2enmod php4
 /etc/init.d/apache2 restart
to:
  apt-get update
  apt-get install php4 libapache2-mod-php4 mysql-server libapache2-mod-auth-mysql php4-mysql
  sudo a2enmod php4
  /etc/init.d/apache2 restart
June 17, 2007, at 01:32 PM by 61.17.224.18 -
Added lines 1-24:
  • Installing Apache2 PHP and MySql
    cp /etc/apt/sources.list /etc/apt/sources.list.orig sed -i -e "s/# deb/deb/g" /etc/apt/sources.list echo "deb http://mirror3.ubuntulinux.nl/ dapper-seveas freenx" >> /etc/apt/sources.list wget http://mirror3.ubuntulinux.nl/1135D466.gpg -O- | sudo apt-key add - apt-get update
  • PHP5 with MySql
    apt-get update apt-get install apache2 libapache2-mod-php5 mysql-server libapache2-mod-auth-mysql php5-mysql php5 a2enmod php5 /etc/init.d/apache2 restart
  • PHP4 with MySql

If PHP5 is present on your system, installing php4 will install the php module for apache (version 1.3) and not apache2. To use php4 with apache2, install libapache2-mod-php4

 apt-get update
 apt-get install php4 libapache2-mod-php4 mysql-server libapache2-mod-auth-mysql php4-mysql
 sudo a2enmod php4
 /etc/init.d/apache2 restart
Edit - History - Print - Recent Changes - Search
Page last modified on January 08, 2008, at 12:25 AM