Home >Operation and Maintenance >Nginx >How do I install Nginx on various operating systems (Linux, Windows, macOS)?
Nginx can be installed on various operating systems including Linux, Windows, and macOS. Here's an overview of how to install Nginx on each of these platforms:
The commands to install Nginx vary based on the Linux distribution you are using. Here are the commands for some popular Linux distributions:
Ubuntu/Debian:
<code>sudo apt update sudo apt install nginx</code>
After installation, start Nginx with:
<code>sudo systemctl start nginx</code>
CentOS/RHEL:
<code>sudo yum install epel-release sudo yum install nginx</code>
Then start Nginx with:
<code>sudo systemctl start nginx</code>
Fedora:
<code>sudo dnf install nginx</code>
And start Nginx with:
<code>sudo systemctl start nginx</code>
Arch Linux:
<code>sudo pacman -S nginx</code>
Start Nginx with:
<code>sudo systemctl start nginx</code>
Yes, Nginx can be installed on Windows. Here are the steps to install Nginx on Windows:
C:\nginx
.Run Nginx: Navigate to the extracted directory and run the nginx.exe
file. You can do this by double-clicking the file or by opening a command prompt and navigating to the Nginx directory, then typing:
<code>start nginx</code>
This command starts Nginx in the background.
http://localhost
. If Nginx is installed correctly, you should see the Nginx welcome page.Stop and Restart Nginx: To stop Nginx, open a command prompt, navigate to the Nginx directory, and run:
<code>nginx -s stop</code>
To reload Nginx after making configuration changes, run:
<code>nginx -s reload</code>
Yes, there is a straightforward way to install Nginx on macOS using Homebrew, which simplifies the process. Here’s how you can do it:
Install Homebrew: If you don't already have Homebrew installed, you can install it by running the following command in your terminal:
<code>/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"</code>
Install Nginx: Once Homebrew is installed, you can install Nginx with the following command:
<code>brew install nginx</code>
Start Nginx: After installation, start Nginx with:
<code>brew services start nginx</code>
Requirements:
By following these methods, you should be able to successfully install Nginx on Linux, Windows, and macOS.
The above is the detailed content of How do I install Nginx on various operating systems (Linux, Windows, macOS)?. For more information, please follow other related articles on the PHP Chinese website!