On Tuesday 29 Dec 2009 4:07:22 pm kiran kumar wrote:
> can any one tell how to install LAMP server in terminal in ubuntu.....and
> also tell please how to run php files in ubunut and how to save and compile
> in ubuntu..i already installed ubuntu ..but i dont installed lamp server so
> i want to install lamp server in terminal is it possible please reply
> 

first there is no such thing as LAMP server. LAMP - which means Linux-apache-
mod_python-postgresql (it can also mean Linux-apache-mysql-perl) is a concept. 
It basically means that instead of having one monolithic server on the remote 
machine and special software on the client machine, one uses an existing 
webserver - which could be Apache, nginx, lighttpd, cherokee ..., a scripting 
language for your business logic - could be python, perl, ruby or even php, a 
database backend - could be postgresql, sqllite (or even couchdb) and a 
platform for all this - could be linux, some BSD or something else. And one 
accesses all this with an ordinary browser. Your ubuntu will already have 
python, perl and php. So you need to do:

sudo apt-get install apache2
sudo apt-get install postgresql

and you have LAMP. To light the LAMP is another thing - please look up some 
good resource in web programming.

-- 
regards
kg
http://lawgon.livejournal.com
_______________________________________________
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc

Reply via email to