Source Package Installation - Examples

Source package is installed in the official website to download the source code to compile their own installation.
Examples: Installing Nginx services
provided need to configure the environment to compile and install
yum install -y gcc gcc ++ openssl openssl -devel
official website address: nginx.org nginx1.6.3 find and download the version
uploaded to the specified directory:
Source Package Installation - Examples
unzip:
Source Package Installation - Examples
after decompression into the directory:
Source Package Installation - Examples
precompiled parameter settings -> compiler -> install
[root @ oldboy nginx-1.6.3] # ./configure --user = nginx --group = nginx --prefix = / application / nginx-1.6.3 / --with --with-http_ssl_module -http_stub_status_module
[root @ Oldboy nginx-1.6.3] # the make
[root @ Oldboy nginx-1.6.3] # the make install
At this point source compiler installation is complete
Source Package Installation - Examples

Guess you like

Origin blog.51cto.com/kangxi/2405233