Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apache 2 Administration Tools on Ubuntu or Windows

I am totally new to Apache and Ubuntu, is there an admin tools where the available functions and features and settings are more accessible? I am finding it very difficult to do even the simplest things.... please help.

Cheers.

like image 205
Snackmoore Avatar asked Feb 01 '10 10:02

Snackmoore


People also ask

Is Apache installed on Ubuntu?

Apache is available within Ubuntu's default software repositories, making it possible to install it using conventional package management tools.

What is Apache Ubuntu?

Apache is the most commonly used Web server on Linux systems. Web servers are used to serve Web pages requested by client computers. Clients typically request and view Web pages using Web browser applications such as Firefox, Opera, Chromium, or Internet Explorer.

How do I know if Apache is installed on Windows?

Navigate to your XAMPP folder, enter your Apache folder, enter your bin folder, right click on httpd.exe. The tabs on the top will be General/ Compatibility/ Details/ Previous Versions, we want the Details tab and there it will list the File version and Product version.


1 Answers

apacheConf is available for most flavours of Linux, however:

1) it ignores the distribution-specific layout of the config files and implements its own structure

2) its just a tool for updating the config - it doesn't actually tell you what the config options mean

3) like any gui tool it abstracts the actual data (in this case, the apache config) you are manipulating

4) there are at least 3 different programs branded as apacheConf

http://www.apache-gui.com/apache-linux.html

http://www.redhat.com/docs/manuals/linux/RHL-7.2-Manual/custom-guide/apacheconf.html

and the config tool bundled in Mandriva

5) it limits what you can actually configure to the design on the UI (e.g. RedHat apacheConf only allows you to set one listening address

Having buttons to click does not help you understand what you are actually trying to achieve (unless your objective is an MCSE of course ;). I'd recommend you go get a good book on Apache config and take the time to read it.

C.

like image 145
symcbean Avatar answered Oct 15 '22 07:10

symcbean