Results 1 to 3 of 3
I'm confused, and I may simply be doing it to myself. I want to install Apache on a newly-installed Kubuntu OS. I downloaded the package (v. 2.2.11 Ubuntu) using
Code:
...
- 12-10-2009 #1Just Joined!
- Join Date
- Jul 2007
- Posts
- 14
apache2 or httpd
I'm confused, and I may simply be doing it to myself. I want to install Apache on a newly-installed Kubuntu OS. I downloaded the package (v. 2.2.11 Ubuntu) using
This isn't my first time installing Apache on a Linux machine, but I haven't done it often enough to be proficient at it. However, I have the vague memory that the executable is named httpd, and the book I'm using (O'Reilly's "Apache: The Definitive Guide") confirms that, adding that apache is the executable for Windows.Code:apt-get install apache2
Indeed, when I run a find command on my older openSuSE installation, I find an executable named httpd in the .../apache/bin/ folder.
But I don't find any such executable file on the Kubuntu machine after installing Apache today. Instead, I find an executable named apache2, and when I runI get the same results as when I runCode:apache2 -h
on the openSuSE machine.Code:httpd -h
So it appears that the executable filename has been changed. Admittedly, my previous experience is a year or so old, and the book is even older than that. I've been searching (Apache Foundation website, Google, here, Ubuntu Forum) for some reference to a name-change for the executable file, but I don't find any. Is that, in fact, the case? Or am I overlooking something?
- 12-10-2009 #2Linux Guru
- Join Date
- Nov 2007
- Posts
- 1,695
As always on a *Nix system, you can review the init script for the paths and daemon names.
Google: apache2 tutorial ubuntuCode:less /etc/init.d/apache2
- 12-10-2009 #3Just Joined!
- Join Date
- Jul 2007
- Posts
- 14
Another lesson for me in Nix-craft . . . Thanks!


Reply With Quote