1. 程式人生 > 其它 >牛客小白月賽20 A-斐波那契(結論求前n項平方和公式)

牛客小白月賽20 A-斐波那契(結論求前n項平方和公式)

第一步:安裝環境

說明:在安裝這些環境之前你可以先檢視一下你有沒有安裝,有則不用再安裝

rpm -qa | grep gcc

一. gcc 安裝
安裝 nginx 需要先將官網下載的原始碼進行編譯,編譯依賴 gcc 環境,如果沒有 gcc 環境,則需要安裝:

yum install -y gcc-c++

二. PCRE pcre-devel 安裝
PCRE(Perl Compatible Regular Expressions) 是一個Perl庫,包括 perl 相容的正則表示式庫。nginx 的 http 模組使用 pcre 來解析正則表示式,所以需要在 linux 上安裝 pcre 庫,pcre-devel 是使用 pcre 開發的一個二次開發庫。nginx也需要此庫。命令:

yum install -y pcre pcre-devel

三. zlib 安裝
zlib 庫提供了很多種壓縮和解壓縮的方式, nginx 使用 zlib 對 http 包的內容進行 gzip ,所以需要在 Centos 上安裝 zlib 庫。

yum install -y zlib zlib-devel

四. OpenSSL 安裝
OpenSSL 是一個強大的安全套接字層密碼庫,囊括主要的密碼演算法、常用的金鑰和證書封裝管理功能及 SSL 協議,並提供豐富的應用程式供測試或其它目的使用。
nginx 不僅支援 http 協議,還支援 https(即在ssl協議上傳輸http),所以需要在 Centos 安裝 OpenSSL 庫。

yum install -y openssl openssl-devel

第二步:下載並解壓

1.下載nginx

連結:https://pan.baidu.com/s/1hnfJfsZaw8Ppn70h0blDtw 提取碼:735v

2.解壓

tar -zxvf nginx-1.18.0.tar.gz -C /usr/local

3.重新命名

mv /usr/local/nginx-1.18.0 /usr/local/nginx

第三步:配置

cd /usr/local/nginx   進入到nginx資料夾
./configure 使用預設配置

第四步:編譯安裝

make && make install

第五步:啟動nginx

cd /usr/local/nginx/sbin/      進入到nginx的sbin目錄
./nginx               啟動nginx

根據報錯資訊看到我們沒有資料夾及檔案,新建資料夾及檔案

mkdir /usr/local/nginx/logs     建立資料夾
touch /usr/local/nginx/logs/error.log      建立檔案
touch /usr/local/nginx/logs/access.log 建立檔案
ls /usr/local/nginx/logs 檢視

1. 啟動nginx

2.檢視nginx程序

ps -ef | grep nginx

3.停止nginx

./nginx -s quit:   此方式停止步驟是待nginx程序處理任務完畢進行停止。
./nginx -s stop:   此方式相當於先查出nginx程序id再使用kill命令強制殺掉程序。
./nginx -s reload 重啟nginx(不推薦此方法,推薦先停止在啟動)

4.重新載入配置檔案

當 ngin x的配置檔案 nginx.conf 修改後,要想讓配置生效需要重啟 nginx,使用 ./nginx -s reload 不用先停止 nginx再啟動 nginx 即可將配置資訊在 nginx 中生效

第六步:開放80埠

前面的文章已經寫了開啟80埠的方式(連結跳轉),如果是阿里雲伺服器需要在安全組規則開放

訪問ip地址,出現下面圖則代表安裝成功

nginx配置檔案nginx.conf說明

nginx配置檔案nginx.conf說明

#user  nobody;
worker_processes  1; #工作程序:數目。根據硬體調整,通常等於cpu數量或者2倍cpu數量。
 
#錯誤日誌存放路徑
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;
 
#pid        logs/nginx.pid; # nginx程序pid存放路徑
 
 
events {
    worker_connections  1024; # 工作程序的最大連線數量
}
 
 
http {
    include       mime.types; #指定mime型別,由mime.type來定義
    default_type  application/octet-stream;
 
    # 日誌格式設定
    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';
 
    #access_log  logs/access.log  main; #用log_format指令設定日誌格式後,需要用access_log來指定日誌檔案存放路徑
                    
    sendfile        on; #指定nginx是否呼叫sendfile函式來輸出檔案,對於普通應用,必須設定on。
            如果用來進行下載等應用磁碟io重負載應用,可設著off,以平衡磁碟與網路io處理速度,降低系統uptime。
    #tcp_nopush     on; #此選項允許或禁止使用socket的TCP_CORK的選項,此選項僅在sendfile的時候使用
 
    #keepalive_timeout  0;  #keepalive超時時間
    keepalive_timeout  65;
 
    #gzip  on; #開啟gzip壓縮服務
 
    #虛擬主機
    server {
        listen       80;  #配置監聽埠號
        server_name  localhost; #配置訪問域名,域名可以有多個,用空格隔開
 
        #charset koi8-r; #字符集設定
 
        #access_log  logs/host.access.log  main;
 
        location / {
            root   html;
            index  index.html index.htm;
        }
        #錯誤跳轉頁
        #error_page  404              /404.html; 
 
        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
 
        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}
 
        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ { #請求的url過濾,正則匹配,~為區分大小寫,~*為不區分大小寫。
        #    root           html; #根目錄
        #    fastcgi_pass   127.0.0.1:9000; #請求轉向定義的伺服器列表
        #    fastcgi_index  index.php; # 如果請求的Fastcgi_index URI是以 / 結束的, 該指令設定的檔案會被附加到URI的後面並儲存在變數$fastcig_script_name中
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}
 
        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }
 
 
    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;
 
    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}
 
 
    # HTTPS server
    #
    #server {
    #    listen       443 ssl;  #監聽埠
    #    server_name  localhost; #域名
 
    #    ssl_certificate      cert.pem; #證書位置
    #    ssl_certificate_key  cert.key; #私鑰位置
 
    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m; 
 
    #    ssl_ciphers  HIGH:!aNULL:!MD5; #密碼加密方式
    #    ssl_prefer_server_ciphers  on; # ssl_prefer_server_ciphers  on; #
 
 
    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}