installing php development environment in ubuntu

6
Installing Apache, PHP, PostgreSQL, MySQL, JDK, NetBeans, VLC Player in Ubuntu (Linux) 1. Please check that your internet first. 2. Open Terminal Window by clicking Applications Accessories Terminal 3. If you are installing first time, Please update your installer first using following command: $ sudo apt-get update 4. To install Apache use following command: $ sudo apt-get install apache2 To set mod_rewrite of Apache to on use following command: $ sudo a2enmod rewrite 5. To install PHP use following command: $ sudo apt-get install php5 $ sudo apt-get install php5 libapache2-mod-php5 To install PHP-XSL (required for Propel) use following command: $ sudo apt-get install php5-xsl To install PHP-PEAR use following command: $ sudo apt-get install php-pear Please restart Apache to take effect o f installation of PHP using following co mmand: $ sudo /etc/init.d/apache2 restart 6. To insta ll Postg reSQL use follo wing commands: $ sudo apt-get install postgresql $ sudo apt-get install postgresql-client $ sudo apt-get install postgresql-contrib $ sudo apt-get install pgadmin3 Above commands will install database client/server, some extra utility scripts and the  pgAdmin III GUI applicati ons for working with th e database.  Now we need to reset the pass word for the postgres admin account for the server, so we can use this for all of the system administration tasks. Use following command: $ sudo su postgres –c psql template1 # ALTER USER postgres WITH PASSWORD ‘postgres’; # \q Previous step alters the password for within the database, now we need to do the same for the linux user postgres. Use following command to change: $ sudo passwd –d postgres $ sudo su postgres –c passwd

Upload: navindersharma

Post on 30-May-2018

236 views

Category:

Documents


0 download

TRANSCRIPT

8/14/2019 Installing PHP Development Environment in Ubuntu

http://slidepdf.com/reader/full/installing-php-development-environment-in-ubuntu 1/6

8/14/2019 Installing PHP Development Environment in Ubuntu

http://slidepdf.com/reader/full/installing-php-development-environment-in-ubuntu 2/6

8/14/2019 Installing PHP Development Environment in Ubuntu

http://slidepdf.com/reader/full/installing-php-development-environment-in-ubuntu 3/6

8/14/2019 Installing PHP Development Environment in Ubuntu

http://slidepdf.com/reader/full/installing-php-development-environment-in-ubuntu 4/6

8/14/2019 Installing PHP Development Environment in Ubuntu

http://slidepdf.com/reader/full/installing-php-development-environment-in-ubuntu 5/6

8/14/2019 Installing PHP Development Environment in Ubuntu

http://slidepdf.com/reader/full/installing-php-development-environment-in-ubuntu 6/6