摘要:
ubuntu18.04TLS 安装mysql 准备环境 ubuntu 18.04 TLS mysql 5.7.35 卸载之前安装的mysql服务 # 删除数据文件 sudo rm /var/lib/mysql/ -R # 删除配置文件 sudo rm /etc/mysql/ -R # 卸载mysql 阅读全文
摘要:
卸载残余 apt-get autoremove --purge mysql-server* apt-get remove mysql-server apt-get autoremove mysql-server apt-get remove mysql-common 安装 apt-get insta 阅读全文
摘要:
<?php //define your token define("TOKEN", "weixin"); $wechatObj = new wechatCallbackapiTest(); $wechatObj->valid(); class wechatCallbackapiTest { publ 阅读全文
摘要:
supervisor 安装与使用 下载 sudo apt-get install supervisor 在 /etc/supervisor/conf.d/ 下新建 xx.conf sudo touch celery_req.conf 编辑配置信息 [program:celery_req] # 项目目 阅读全文
摘要:
shell 入门 脚本格式 #!/bin/bash 第一个shell脚本 创建一个shell脚本,输出 hello world 示例 #!/bin/bash echo "hello world" 脚本常用的执行方式 sh test.sh bash test.sh ./test.sh source t 阅读全文
摘要:
oss 下载 wget http://gosspublic.alicdn.com/ossutil/1.7.3/ossutil64 给予权限 chmod 755 ossutil64 添加到 /usr/bin 中 mv ossutil64 /usr/bin 添加配置, 根据需求添加配置 ossutil6 阅读全文
摘要:
开发环境 ubuntu 18.04 + python3.6.9 / windows10 + python 3.6.9 安装依赖 # 安装django==2.2.17 pip install django==2.2.17 # 安装celery == 4.4.0 pip install celery== 阅读全文
摘要:
ubuntu 18 安装 mysql 卸载原有的mysql服务 sudo apt-get autoremove --purge mysql-server-5.0 sudo apt-get remove mysql-server sudo apt-get autoremove mysql-server 阅读全文
摘要:
python 实现 可能想认识的人 需求 好友列表分布 data = { "A": ["B", "C", "D", "E", "F"], "B": ["A", "E", "D", "S"], "C": ["E", "R", "F", "G"], "D": [& 阅读全文
摘要:
基于 Django 自带的权限系统认证 创建用户 create_user 方法 from rest_framework.views import APIView from rest_framework.response import Response class UserRegisterView(A 阅读全文