持续更新细节中。。。。
一、首先安装虚拟环境
我一直用的是pip3安装,与python3配合,pip与python2配合,注意始终一致,混用会报错
在使用ubuntu18.04搭建虚拟环境时,按照16.04的方法:
一.安装虚拟环境命令,这里建议用pip安装,不然后面路径配置会不对,用pip3安装的话,只要能找到配置文件的目录,写进source也是可以的:
pip install virtualenv
pip install virtualenvwrapper
二.安装完虚拟环境后,提示找不到mkvirtualenv命令workon 命令(也可以直接用书上的命令),须配置环境变量:
1、创建目录用来存放虚拟环境
mkdir $HOME/.virtualenvs
2、打开~/.bashrc文件,并添加如下:
export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/bin/virtualenvwrapper.sh
3、运行source ~/.bashrc
在第3步:source ~/.bashrc 后系统报错提示:
bash: /usr/local/bin/virtualenvwrapper.sh: 没有那个文件或目录
在各种查找后的有效解决办法:
ubuntu18.04里,通过pip安装virtualenvwrapper得到的virtualenvwrapper.sh被安装在/.local/bin/目录下,需要修改上面添加在~/.bashrc的内容中的路径即可:
export WORKON_HOME=$HOME/.virtualenvs
source ~/.local/bin/virtualenvwrapper.sh
二、Django默认的数据库是sqlite3这里我将它改成MySQL
settings.py
DATABASES = {
'default': {
#'ENGINE': 'django.db.backends.sqlite3',
#'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
'ENGINE': 'django.db.backends.mysql',
'NAME': 'learn_web',
'USER': 'learn_web',
'PASSWORD': '你的密码',
'HOST': '服务器ip',
'PORT': '3306',
}
}
安装MySQL的时候,python3的安装命令是pip3 install PyMySQL
由于更改了数据库,我们需要重新迁移,来在mysql中建立数据库结构。迁移之前我们需要进入mysql中,使用命令建立一个空的learn_web(与settings.py中数据库名一致)数据库,否则无法迁移。
python3 manage.py makemigrations
python3 manage.py migrate
产生错误django.db.utils.OperationalError: (2003, "Can't connect to MySQL server on '0.0.0.0 ip_address' ([Errno 111] Connection refused)")
这是因为服务器上的Mysql服务还没有被启动,
service mysql start
迁移中会产生一个错误。no model "MySQLDb"
因为MySQL的包没有被识别,这时候我们需要把它导入到项目目录下的__init__.py
文件中,
import pymysql
pymysql.install_as_MySQLdb()
MySQL安装的过程
sudo apt-get install mysql-server mysql-client
然后按照提示输入
安装MySQL之后,第一次登录,sudo mysql -uroot -p
然后设置账户密码:
update mysql.user set authentication_string=PASSWORD('123'), plugin='mysql_native_password' where user='root';
flush privileges;
管理服务
- 启动
service mysql start
- 停止
service mysql stop
- 重启
service mysql restart
允许远程连接
- 找到mysql配置文件并修改
sudo vi /etc/mysql/mysql.conf.d/mysqld.cnf
将bind-address=127.0.0.1注释
- 登录mysql,运行命令
grant all privileges on *.* to 'learn_web'@'%' identified by '你的密码' with grant option;
flush privileges;
#远程登录密码为'你的密码'
- 重启mysql
三、部署环节
uwsgi:的命令:
pip3 install uwsgi
uwsgi --ini uwsgi.ini # 启动
# 启动时会生成两个文件,分别为:
# PID文件 标识这个程序所处的状态
# SOCK文件 用来和其他程序通信的
uwsgi --stop uwsgi.pid # 停止
uwsgi --reload uwsgi.ini # 重置
查看进程情况:
ps ajx|grep uwsgi
在Django项目下配置:uwsgi.ini
[uwsgi]
socket=0.0.0.0:9000
#http=0.0.0.0:9000
chdir=/home/ubuntu/learn/learning_log#项目目录
wsgi-file=learning_log/wsgi.py
processes=4
threads=2
master=True
pidfile=uwsgi.pid
daemonize=uwsgi.log
nginx 的命令:
sudo apt-get nginx
nginx -s reload
nginx -s stop
修改它的default配置文件
root@ubuntu:/etc/nginx/sites-enabled# vi default
root /var/www/html;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
#try_files $uri $uri/ =404;
include uwsgi_params;
uwsgi_pass 0.0.0.0:9000;#端口要和uwsgi中的一致
}
location /static {
alias /var/www/learning_log/static/;
}
# pass PHP scripts to FastCGI server
#
#location ~ \.php$ {
# include snippets/fastcgi-php.conf;
#
# # With php-fpm (or other unix sockets):
# fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
# # With php-cgi (or other tcp sockets):
# fastcgi_pass 127.0.0.1:9000;
#}
Django创建管理员用户:
python3 manage.py createsuperuser
公钥的上传:
利用Git制作密钥对****.pub,上传公钥到服务器,
首先root 账户进入root目录,改变目录权限。
chmod 700 ~/.ssh
进入密钥目录
sudo cat “公钥名称”.pub >>/root/.ssh/authorized_keys
部署服务:
在项目目录下,冻结虚拟环境:
pip3 freeze > plist.txt
在服务器上安装环境。
workon [虚拟环境名称]
pip3 install -r plist.txt
在目标计算机创建静态文件目录,与settings.py的设置一致
sudo mkdir /var/www/learning_log
sudo chmod 777 /var/www/learning_log
>>~/learning_log>>mkdir static
修改settings.py
STATIC_ROOT='/var/www/learning_logs/static/'
STATIC_URL='/static/'
收集静态文件,(静态文件被nginx托管,必须收集才能识别)
python3 manage.py collectstatic
开启Nginx,uwsgi,部署完成。