当前位置:   article > 正文

阿里云服务器命令_阿里云命令码

阿里云命令码

1.进入服务器

ssh 用户名@ip地址

2.进入之后

3.下载nginx

  1. brew search nginx
  2. brew install nginx
  3. nginx -v
  4. # 启动nginx
  5. sudo brew services start nginx
  6. # nginx重启
  7. sudo brew services restart nginx
  8. # 关闭nginx服务
  9. sudo brew services stop nginx
  10. # 查看nginx服务进程
  11. ps -ef|grep nginx
  12. 启动完nginx 页面输入localhost:8080

出现以下界面说明启动成功

普及nginx常用命令

        

  1. 常用命令:
  2. nginx -s reload配置文件后重启
  3. nginx -t 查看配置文件是否正确
  4. nginx -V 查看版本,以及配置文件地址
  5. nginx -v 查看版本
  6. nginx -c filename 指定配置文件
  7. nginx -h 帮助
  8. nginx -s [reload\reopen\stop\quit]
  9. 关闭
  10.   查询nginx主进程号
  11.   ps -ef | grep nginx
  12.   从容停止 kill -QUIT 主进程号
  13.   快速停止 kill -TERM 主进程号
  14.   强制停止 kill -9 nginx
  15.   若nginx.conf配置了pid文件路径,如果没有,则在logs目录下
  16.   kill -信号类型 ‘/usr/local/nginx/logs/nginx.pid’

4.homebrew常用命令

  1. homebrew 常用的指令:
  2. brew search mysql : 搜索具体的程序包
  3. brew install mysql : 安装具体的程序包
  4. brew info mysql : 查看具体程序的信息
  5. brew uninstall mysql : 卸载具体的应用(这里只是用mysql 作个例子

 5.gunicorn

在命令行输入

pip install gunicorn
  • 1

安装gunicorn

6、配置nginx

/opt/homebrew/etc/nginx文件夹中找到nginx.conf文件,修改其中的内容:

server {
        listen       8000;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
                proxy_pass http://127.0.0.1:8000;
                proxy_set_header Host $host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }
    location /static/ {
                root /Users/tianweitao/PycharmProjects/weihu; #Django项目所在目录
        }

7、配置Django

在你的Django应用的setting.py文件的INSTALLED_APPS中添加gunicorn应用如下所示:

INSTALLED_APPS = (
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'httpservers',
    'gunicorn'
)
 


 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/172706
推荐阅读
相关标签
  

闽ICP备14008679号