If you are into the Linux platform, you might have definitely heard about the Apache webserver. Apache was the most popular open-source web server project for few decades. Even today, Apache holds a share of around 30% in webserver. If you own a website running on an Apache web server, then it is your’s responsibility to keep the web server healthy. To keep the health, you should update, patch, configure or install the latest version of Apache. However, the problem in installing the latest Apache on the Linux system is no Linux distributions will release the compelled and built package for Apache as soon as the new package is released. To install the latest Apache either you should wait until your distribution release the latest compelled package for Apache or you should download the latest version of source code, build and install it on your Linux server. In this post, we will show you the step-by-step procedure to install the latest version of Apache from source code on Ubuntu.
How To Install Apache from Source Code On Ubuntu?
How to Install the Latest Version Apache from Source Code on Ubuntu?
- Check the operating system version
Run this command to see the Operating System distribution, version, build, and architecture. Make a note of this information for your reference.
# lsb_release -a ; getconf LONG_BIT - Download and unzip the apache package
Download the Apache source code under the /usr/local/src/ directory. Unzip the archive file and get inside the directory.
Change the directory to src
# cd /usr/local/src/
Use wget to download the Apache source code package
# wget https://dlcdn.apache.org//httpd/httpd-2.4.50.tar.bz2
Unzip the downloaded package. Package will be unzipped into a directory
# tar -xf httpd-2.4.50.tar.bz2
Change the directory
# cd httpd-2.4.50 - build the installation package from the source
Build the installation package from the source using the configuration command as shone here.
Create a new directory for the installation. We can’t install Apache in the same directory we have the source.
# mkdir /usr/local/apache2.4.50
Use configure command to build the installation package. Specify the installation directory with –prefix parameter.
# ./configure –prefix=/usr/local/apache2.4.50 –enable-shared=max - Apr error in building the package
If you get the Apr error “checking for ARP… no”. Some packages are not installed on your server. You can fix the error by installing these packages.
1. build-essential
2. libssl-dev
3. libexpat-dev
4. libpcre3-dev
5. libapr1-dev
6. libaprutil1-dev
# apt install build-essential libssl-dev libexpat-dev libpcre3-dev libapr1-dev libaprutil1-dev - Install the apache from the build
You can install the package upon the successful build. You should see the summary of the build after the successful completion.
Run this make and make install commands to install the Apache server on Ubuntu.
# make && make install - Run the Apache service
You can start, stop, restart the Apache server with apachectl command from its bin directory.
# /usr/local/apache2.4.50/bin/apachectl start
# /usr/local/apache2.4.50/bin/apachectl stop
# /usr/local/apache2.4.50/bin/apachectl restart
Run this command to check the status of the Apache service.
# ps -ef | grep apache2
That’s it. This is how you can install the latest version of Apache from source code on Ubuntu.
We hope this tutorial post will help you in installing Apache from the source code. Thanks for reading this threat post. Please share this post and help to secure the digital world. Visit our social media page on Facebook, LinkedIn, Twitter, Telegram, Tumblr, & Medium and subscribe to receive updates like this.
hello , thank you for the post . However , I got an error when installing "# apt install build-essential libssl-dev libexpat-dev libpcre3-dev libapr1-dev libaprutil1-dev" => "No packages where found" . I am using a non-debian based .
Please share the complete output of the command. It helps to understand the problem in a better way.
Thank you very much for this article!
Can you please suggest: hot to add this builded from sources apache to Ubuntu/Debian autostart?
If you want to install the built version on your Ubuntu server, run ‘sudo apt install apache2’ command on your server.
Thank you for you response!
I installed Apache using your manual, it works. To start Apache I can use the "apachectl start" command.
I can also start this Apache using the "httpd -k start" command.
But I need this Apache (installed from source) to start when the operating system (Ubuntu) starts up. Please tell, do you know any ways to do this?
I tried to create a service for systemctl, I used the above commands as an exextar parameter. The problem is that both of these commands start Apache and exit with code 0 (Apache continues to run), systemctl tryed to restart this process, so we can't monitor Apache status in this way.
Hi Antonio,
We are pleased to hear that. Could you try the command “apachectl enable”?
Extreme useful content. Thank you very much
It’s our pleasure to hear that! Thanks for your comment.
Thanks for help! 🙂
You are most welcome!