溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

在Windows Server 2019上配置NAS的方法

發(fā)布時(shí)間:2020-09-25 12:52:58 來源:腳本之家 閱讀:346 作者:克萊普斯 欄目:服務(wù)器

序言

此教程安裝的都是最新版本的。由于是當(dāng)NAS讓它非常穩(wěn)定的運(yùn)行,所以能不安裝的軟件盡量不要安裝。

一、準(zhǔn)備工作

【更新系統(tǒng)】

沒啥,就他喵想用個(gè)最新的。

右鍵點(diǎn)擊開始鍵->設(shè)置->更新與安全

二、Smaba

【安裝】

官方網(wǎng)站:https://www.samba.org/

命令流程:

cd /source/
wget https://download.samba.org/pub/samba/samba-latest.tar.gz
tar -zxvf samba-latest.tar.gz
cd samba-latest

【配置】

此處下載的是我用vs2017生成的asp.net core,僅供演示!

mkdir /web/www
cd /web/www
wget https://files.cnblogs.com/files/project/webapp.tar.gz
tar -zxf webapp.tar.gz

三、Supervisor

【安裝】

官方網(wǎng)站:http://www.supervisord.org/

命令流程:

yum install -y supervisor

【配置】

1、復(fù)制文件

mkdir /web/supervisor
cp /etc/supervisord.conf /web/supervisor

2、打開supervisord.conf

vim /web/supervisor/supervisord.conf

3、追加如下

[program:webapp]
command=dotnet webapp.dll ;要執(zhí)行的命令
directory=/web/www/   ;命令執(zhí)行的目錄
autostart=true     ;是否自動(dòng)啟動(dòng)
autorestart=true    ;是否自動(dòng)重啟
stderr_logfile=/var/log/webapp.err.log ;標(biāo)準(zhǔn)錯(cuò)誤日志
stdout_logfile=/var/log/webapp.out.log ;標(biāo)準(zhǔn)輸出日志

【運(yùn)行】

supervisord -c /web/supervisor/supervisord.conf

四、Nginx

【安裝】

官方網(wǎng)站:http://nginx.org/

命令流程:

rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
yum install -y nginx

【配置】

1、復(fù)制文件

mkdir /web/nginx
cp /etc/nginx/nginx.conf /web/nginx
cp /etc/nginx/mime.types /web/nginx

2、打開nginx.conf

vim /web/nginx/nginx.conf

3、修改如下

worker_processes 1;

events {
  worker_connections 1024;
}


http {
  include    mime.types;
  default_type application/octet-stream;

  sendfile    on;

  keepalive_timeout 65;

  gzip on;

  server {
    listen    80;
    server_name localhost;

    location / {
      proxy_pass http://127.0.0.1:5000;
      proxy_http_version 1.1;
      proxy_set_header Upgrade $http_upgrade;
      proxy_set_header Connection keep-alive;
      proxy_set_header Host $host;
      proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_cache_bypass $http_upgrade;
    }
  }
}

【運(yùn)行】

nginx -c /web/nginx/nginx.conf

五、效果預(yù)覽

在Windows Server 2019上配置NAS的方法

附、常用命令

nginx

# nginx       //啟動(dòng)nginx
# nginx -s reload  //重啟nginx
# nginx -s stop   //關(guān)閉nginx

supervisor

supervisord
supervisorctl status  //查看所有任務(wù)狀態(tài)
supervisorctl shutdown //關(guān)閉所有任務(wù)
supervisorctl start|stop|restart all     //控制所有進(jìn)程
supervisorctl start|stop|restart program_name //控制目標(biāo)進(jìn)程 

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI