If you have a CentOS 8 server you might have noticed that installing Nginx directly with the sudo dnf install nginx
command does not install the latest stable Nginx version.
Here’s how you could install the latest Nginx available on CentOS 8!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Before getting started, make sure to follow our Initial Server Setup Guide for CentOS 8 guide:
https://www.digitalocean.com/community/tutorials/initial-server-setup-with-centos-8
Removing your old Nginx installation
If you already have Nginx installed, you would need to stop it and then remove the current installation:
Adding the Ngnix repository
Once you’ve removed the old Nginx version, you will need to first install the
dnf
utilities:Then using your favorite text editor, create the following file:
After that add the following content which specifies the Nginx repository which we will use to install the latest Nginx version:
Save the file and exit.
With that, you are ready to install Nginx!
Installing the latest Nginx version
With the
nginx.repo
that we just added,dnf
will install the stable Nginx version. In case you want to, you could use the Mainline, which includes some new features, you need to run the following command:For more information about the difference between the Stable and the Mainline Nginx versions, make sure to check the official Nginx blog here:
https://www.nginx.com/blog/nginx-1-6-1-7-released/
Once you’ve specified the Nginx stable repository, you have to run the following command to install Nginx:
You will get a prompt asking you to accept the GPG key:
Just click
y
and then press Enter.With that, the latest stable Nginx version will be installed on your CentOS 8 server!
Starting and enabling Nginx
Finally, make sure to start Nginx with the following command:
And then make sure to enable it so that in case that your server gets rebooted, Nginx would start automatically on boot:
Video Demo
Conclusion
This is pretty much it! Now you have the latest Nginx version installed and up and running!
For more information on how to get started with Nginx, make sure to check the steps from the following tutorial:
https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-centos-8
I hope that this helps!
Hello there,
In addition to what has already been mentioned, I wanted to point out that CentOS Linux 8 has reached End Of Life (EOL) on December 31st, 2021.
I would strongly recommend planning either migration to another OS like Debian or Ubuntu, or upgrading to CentOS Stream.
I personally believe that the safest way to do this is to follow these steps here:
rsync
for example copy over your files and migrate your databasesRegards, Alex
Hello there,
In addition to what has already been mentioned, I wanted to point out that CentOS Linux 8 has reached End Of Life (EOL) on December 31st, 2021.
I would strongly recommend planning either migration to another OS like Debian or Ubuntu, or upgrading to CentOS Stream.
I personally believe that the safest way to do this is to follow these steps here:
rsync
for example copy over your files and migrate your databasesRegards, Alex