Apache2, Installing
(11 intermediate revisions by 6 users not shown) | |||
Line 1: | Line 1: | ||
'''Apache 2.0''' | '''Apache 2.0''' | ||
− | See also [[Apache]] - [[ | + | See also [[Apache]] - [[Apache Controlling]] - [[Configuring Apache]] |
We'll walk through the installation for Apache2. It's very simple to install - in earlier versions of Apache, you had to install either mods or different versions depending on whether you wanted to enable certain features (ssl, etc). With Apache2, they are incorporated into the main package, and enabled or disabled when you configure Apache. There are a few exceptions, but most everything you'll need to run a modern feature-rich webserver is included with the Apache2 port. | We'll walk through the installation for Apache2. It's very simple to install - in earlier versions of Apache, you had to install either mods or different versions depending on whether you wanted to enable certain features (ssl, etc). With Apache2, they are incorporated into the main package, and enabled or disabled when you configure Apache. There are a few exceptions, but most everything you'll need to run a modern feature-rich webserver is included with the Apache2 port. | ||
− | '''Note:''' As always, before installing any ports, update your ports tree with [[ | + | '''Note:''' As always, before installing any ports, update your ports tree with [[csup]] if it has been a while. |
Let's get started: | Let's get started: | ||
− | >su | + | >'''su''' |
Password: (enter root password) | Password: (enter root password) | ||
oyabun# '''cd /usr/ports/www''' | oyabun# '''cd /usr/ports/www''' | ||
Line 23: | Line 23: | ||
apache13-modssl+ipv6 | apache13-modssl+ipv6 | ||
apache13-ssl | apache13-ssl | ||
− | + | apache20 | |
mod_jk-apache2 | mod_jk-apache2 | ||
mod_jk2-apache2 | mod_jk2-apache2 | ||
− | oyabun# '''cd | + | oyabun# '''cd apache20''' |
oyabun# '''make install clean''' | oyabun# '''make install clean''' | ||
First, I changed to the [[superuser]], as we'll be installing software. I changed directory to the '''www''' section of the ports tree, and filtered a listing of that directories contents for all ports that contained the word 'apache' using [[grep]]. The one we want is '''apache2'''. I then changed to that directory, and issued the [[make]] command, with options '''install''' and '''clean''' specified, to install the software and clean up the makefiles when done. | First, I changed to the [[superuser]], as we'll be installing software. I changed directory to the '''www''' section of the ports tree, and filtered a listing of that directories contents for all ports that contained the word 'apache' using [[grep]]. The one we want is '''apache2'''. I then changed to that directory, and issued the [[make]] command, with options '''install''' and '''clean''' specified, to install the software and clean up the makefiles when done. | ||
− | After a seconds, minutes, or hours (depending on whether your hardware is going to waste, reasonable, or a throwback to the early 90's), Apache2's installation will be completed, and you'll be faced with this note: | + | Note that you'll want to check the file /usr/ports/www/apache2/Makefile.doc to see what modules you can build into apache2 -- e.g., [[LDAP]] or [[IPv6]] or threading. To include the one you want, you'd want to build apache like so: |
+ | |||
+ | samizdata# '''make -DWITH_LDAP_MODULE install clean | ||
+ | |||
+ | After a few seconds, minutes, or hours (depending on whether your hardware is going to waste, reasonable, or a throwback to the early 90's), Apache2's installation will be completed, and you'll be faced with this note: | ||
Available variables you add/set to /etc/rc.conf. | Available variables you add/set to /etc/rc.conf. | ||
Line 51: | Line 55: | ||
So, Apache2 is now installed, you just need to actually set it up. | So, Apache2 is now installed, you just need to actually set it up. | ||
− | Please visit [[ | + | Please visit [[Apache Controlling]] to learn how to actually start your webserver. |
[[Category:Common Tasks]] | [[Category:Common Tasks]] | ||
+ | |||
+ | [[Category:FreeBSD for Servers]] |
Latest revision as of 20:13, 17 December 2014
Apache 2.0
See also Apache - Apache Controlling - Configuring Apache
We'll walk through the installation for Apache2. It's very simple to install - in earlier versions of Apache, you had to install either mods or different versions depending on whether you wanted to enable certain features (ssl, etc). With Apache2, they are incorporated into the main package, and enabled or disabled when you configure Apache. There are a few exceptions, but most everything you'll need to run a modern feature-rich webserver is included with the Apache2 port.
Note: As always, before installing any ports, update your ports tree with csup if it has been a while.
Let's get started:
>su Password: (enter root password) oyabun# cd /usr/ports/www oyabun# ls | grep apache apache-contrib apache-forrest apache-jserv apache13 apache13+ipv6 apache13-fp apache13-modperl apache13-modssl apache13-modssl+ipv6 apache13-ssl apache20 mod_jk-apache2 mod_jk2-apache2 oyabun# cd apache20 oyabun# make install clean
First, I changed to the superuser, as we'll be installing software. I changed directory to the www section of the ports tree, and filtered a listing of that directories contents for all ports that contained the word 'apache' using grep. The one we want is apache2. I then changed to that directory, and issued the make command, with options install and clean specified, to install the software and clean up the makefiles when done.
Note that you'll want to check the file /usr/ports/www/apache2/Makefile.doc to see what modules you can build into apache2 -- e.g., LDAP or IPv6 or threading. To include the one you want, you'd want to build apache like so:
samizdata# make -DWITH_LDAP_MODULE install clean
After a few seconds, minutes, or hours (depending on whether your hardware is going to waste, reasonable, or a throwback to the early 90's), Apache2's installation will be completed, and you'll be faced with this note:
Available variables you add/set to /etc/rc.conf. - apache2_enable (bool): Set to "NO" by default. Set it to "YES" to enable apache2. - apache2ssl_enable (bool): Set to "NO" by default. Set it to "YES" to start apache with SSL (if <IfDefined SSL> exists in httpd.conf). - apache2limits_enable (bool):Set to "NO" by default. Set it to yes to run `limits $limits_args` just before apache starts. - apache2_flags (str): Set to "" by default. Extra flags passed to start command. - apache2limits_args (str): Default to "-e -C daemon" Arguments of pre-start limits run.
As you can see from this, ssl suport is included in Apache2, as opposed to Apache 1.3. I included this output because I have a bad habit of scrolling important stuff like this out of the buffer after installations, and it's nice to have it saved here. You don't need to worry about any of this until you configure Apache.
So, Apache2 is now installed, you just need to actually set it up.
Please visit Apache Controlling to learn how to actually start your webserver.