Ubuntu+nginx+uwsgi Python网站发布
1.安装Ubuntu server
先安装VMware虚拟机,再下载Ubuntu server 镜像文件,版本:Ubuntu-16.04.1-server-amd64
安装步骤省略....
当VMware 、Ubuntu 都安装好,需要将刚刚安装好的Ubuntu实例的网络适配器改为:桥接模式
2.安装远程连接工具:openssh-server (Windows 系统,Mac 系统可以使用FileZilla)
安装命令, windows 使用客户端:Secure Shell Client 来远程连接
$ sudo apt-get update
$ sudo apt-get install -y openssh-server
$ sudo vim /etc/ssh/ssh_config
# 修改...
$ sudo vim /etc/ssh/sshd_config
# 末尾添加一下内容
Ciphers aes128-cbc,aes192-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr,3des-cbc,arcfour128,arcfour256,arcfour,blowfish-cbc,cast128-cbc
MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160,hmac-sha1-96,hmac-md5-96
KexAlgorithms diffie-hellman-group1-sha1,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group-exchange-sha256,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group1-sha1,curve25519-sha256@libssh.org
如果root用户无法远程访问
- 打开文件:cd /etc/ssh/sshd_config
- 修改配置:PermitRootLogin yes
- 重启服务:service sshd restart
3.安装Python
4.安装nginx
安装命令
$ sudo apt-get install nginx
5.安装uwsgi
安装命令
1. apt-get install uwsgi
2. pip3 install uwsgi
这里 一定要先用apt-get 装一次uwsgi,再通过pip3 装一次,不然uwsgi无法正常运行
6.pip安装python项目需要用到的包
安装命令
pip安装django 、pymysql、requests 等各种需要的包
7.当需要用到的包都安装好后,发布网站命令
1、配置文件
$ rm /etc/nginx/sites-enabled/default
$ cp seiber.com /etc/nginx/sites-available
$ ln -s /etc/nginx/sites-available/seiber.com /etc/nginx/sites-enabled/seiber.com
2、重新启动nginx
$ nginx -s reload
3、重新加载uwsgi
$ uwsgi --ini uwsgi.ini
4、重启
uwsg:uwsgi --reload /var/run/web/lvban.pid