cd /etc/yum.repos.d
mkdir repobak
mv * repobak/
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
##### 注意1: 必须先安装库环境
yum install -y gcc patch libffi-devel python-devel zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel
##### 注意2: 配置环境变量/etc/profile,python3的变量一定要放在第一位
pip3 install -i https://pypi.douban.com/simple virtualenv
pip3 install -i https://pypi.douban.com/simple virtualenvwrapper
vim ~/.bashrc
在最后添加以下内容:
export WORKON_HOME=~/Envs
export VIRTUALENVWRAPPER_VIRTUALENV_ARGS='--no-site-packages'
export VIRTUALENVWRAPPER_PYTHON=/opt/python36/bin/python3
source /opt/python36/bin/virtualenvwrapper.sh
source ~/.bashrc
mkvirtualenv web_pj_env
# 安装xadmin
pip install https://codeload.github.com/sshwsfc/xadmin/zip/django2 -i https://pypi.douban.com/simple/
# 安装依赖包:
pip3 install -i https://pypi.douban.com/simple -r requirements.txt
此处是用xshell进行文件上传的;下面教程仅供参考;
# 注意,在打包之前,最好是将src目录下面的setting.js配置文件里面的配置修改一下
# 将IP与端口改为我们部署服务器的IP和端口
export default {
Host: "http://192.168.12.249:8000"
}
npm run build
yum install -y mariadb-server mariadb
# 先启动mariadb
systemctl start mariadb
# 再进行初始化
mysql_secure_installation
修改/etc/my.cnf配置文件,添加以下配置
[mysqld]
character-set-server=utf8
collation-server=utf8_general_ci
log-error=/var/log/mysqld.log
[client]
default-character-set=utf8
[mysql]
default-character-set=utf8
systemctl restart mariadb
mysql -uroot -p
# 如果使用的是web_user用户连接后端django程序, 则需要重新创建用户并授权
# 1. 创建用户
create user 'web_user'@'%' identified by 'web';
# 2. 授权用户
grant all privileges on *.* to web_user@'%' identified by 'web';
mysqldump -u root -p --all-databases > /opt/web.sql
source /opt/web.sql
注意1,linux的数据库,需要对root用户设置远程链接的权限, 密码是redhat
注意,SELinux和linux的防火墙要给关闭,否则windows去链接linux的3306端口可能被拒绝!!!
注意,SELinux和linux的防火墙要给关闭,否则windows去链接linux的3306端口可能被拒绝!!!
注意,SELinux和linux的防火墙要给关闭,否则windows去链接linux的3306端口可能被拒绝!!!
wget http://download.redis.io/releases/redis-5.0.2.tar.gz
tar -zxvf redis-5.0.2.tar.gz
cd redis-5.0.2
make && make install
mkdir -p /opt/redis_conf
touch /opt/redis_conf/redis-6379.conf
vim /opt/redis_conf/redis-6379.conf
port 6379
daemonize yes
pidfile /data/6379/redis.pid
loglevel notice
logfile "/data/6379/redis.log"
dir /data/6379
protected-mode yes
mkdir -p /data/6379
redis-server /opt/redis_conf/redis-6379.conf
python manage.py runserver 0.0.0.0:8000
File "/opt/Envs/luffy_env/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 36, in
raise ImproperlyConfigured('mysqlclient 1.3.13 or newer is required; you have %s.' % Database.__version__)
# 修改文件36行的if判断语句,直接注释即可
-
File "/opt/Envs/luffy_env/lib/python3.6/site-packages/django/db/backends/mysql/operations.py", line 146, in last_executed_query
query = query.decode(errors='replace')
将文件中146行原decode改为encode即可
ALLOW_HOSTS = ["*"]
CORS_ORIGIN_WHITELIST = (
'http://192.168.12.249',
)
uwsgi的hello world测试
参照博客https://www.cnblogs.com/tiger666/articles/10313069.html里面的安装uwsgi版块
pip3 install uwsgi
[uwsgi]
#使用nginx连接时使用,Django程序所在服务器地址
# socket=127.0.0.1:8080
#直接做web服务器使用,Django程序所在服务器地址
http=0.0.0.0:8000
#项目目录
chdir=/opt/luffy/luffyapi
#项目中wsgi.py文件的目录,相对于项目目录
wsgi-file=luffyapi/wsgi.py
# 进程数
processes=2
# 线程数
threads=2
# uwsgi服务器的角色
master=True
# 存放进程编号的文件
pidfile=uwsgi.pid
# 日志文件,因为uwsgi可以脱离终端在后台运行,日志看不见。我们以前的runserver是依赖终端的
daemonize=uwsgi.log
# 指定依赖的虚拟环境
virtualenv=/root/Envs/luffy_env
uwsgi --ini /opt/web/webapi/uwsgi.ini
修改项目里面的wsgi.py文件,将settings的配置指向dev.py
vim /opt/web/webapi/webapi/wsgi.py
修改配置文件
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'webapi.settings.dev')
uwsgi本身是支持高并发,多进程的功能,这是它的优点
缺点: 不能处理静态文件
https://blog.csdn.net/weixin_45163798/article/details/103781390?utm_source=app&from=singlemessage
STATIC_ROOT='/opt/web/webapi/static' # 在STATIC_URL = '/static/'配置上面加这一行
STATIC_URL = '/static/'
STATICFILES_DIRS=[
os.path.join(BASE_DIR,"static"),
]
那么,上述的参数STATIC_ROOT用在哪?看下面
python3 manage.py collectstatic
# STATIC_ROOT 文件夹 是用来将所有STATICFILES_DIRS中所有文件夹中的文件,以及各app中static中的文件都复制过来
# 把这些文件放到一起是为了用nginx等部署的时候更方便
ls /opt/web/webapi/static
server {
listen 80;
server_name 192.168.12.249;
#access_log logs/host.access.log main;
location / {
root /opt/web/web_pc/dist;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
server {
listen 8000;
server_name 192.168.12.249;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
include uwsgi_params;
uwsgi_pass 0.0.0.0:9000;
}
location /static {
root /opt/web/webapi;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
虚拟主机1: 用于找到vue的静态文件
虚拟主机2: 用于接受vue发起的8000端口的请求,反向代理转发给9000的uwsgi应用, 同时处理后端的静态文件static
[uwsgi]
#使用nginx连接时使用,Django程序所在服务器地址
socket=127.0.0.1:8080
#直接做web服务器使用,Django程序所在服务器地址
# http=0.0.0.0:8000
#项目目录
chdir=/opt/luffy/luffyapi
#项目中wsgi.py文件的目录,相对于项目目录
wsgi-file=luffyapi/wsgi.py
# 进程数
processes=2
# 线程数
threads=2
# uwsgi服务器的角色
master=True
# 存放进程编号的文件
pidfile=uwsgi.pid
# 日志文件,因为uwsgi可以脱离终端在后台运行,日志看不见。我们以前的runserver是依赖终端的
daemonize=uwsgi.log
# 指定依赖的虚拟环境
virtualenv=/root/Envs/luffy_env
/root/Envs/web_pj/bin/uwsgi /opt/web/webapi/uwsgi.ini
/opt/nginx196/sbin/nginx -s reload
easy_install supervisor
如果easy_install命令无法使用的话,就安装一下python-setuptools工具即可
yum install python-setuptools
由于supervisor在python3下无法使用,因此只能用python2去下载!!!!!!
由于supervisor在python3下无法使用,因此只能用python2去下载!!!!!!
由于supervisor在python3下无法使用,因此只能用python2去下载!!!!!!
echo_supervisord_conf > /etc/supervisord.conf
在文件末尾添加如下配置:
[program:luffy]
command=/root/Envs/web_pj/bin/uwsgi /opt/web/webapi/uwsgi.ini
stopasgroup=true
killasgroup=true
supervisord -c /etc/supervisord.conf
supervisorctl
supervisor交互模式中基本操作命令
start 进程名 # 启动进程
stop 进程名 # 停止进程
start all # 启动所有进程
stop all # 启动所有进程
最终效果: 访问nginx的80端口,即可找到****web应用