1.同步MySQL数据库 服务器选用的华为云,安装了Ubuntu18.04,华为云默认是以root用户登录的. 1.使用Xshell6连接华为云 ls 2.Ubuntu18.04安装MySQL5.7 1.安装命令: apt-get install mysql-server y apt-get install mysql-client apt-get install libmysqlclient-dev y 2.配置密码: 1.进入mysql 安装MySQL5.7的过程中是没有让用户输入初始密码这…
1.新建Model 1.users数据 1.在apps/users/models.py中: from datetime import datetime from django.db import models from django.contrib.auth.models import AbstractUser # Create your models here. class UserProfile(AbstractUser): """ 管理员 ""&qu…
1.users相关的api开发 1.在settings中添加APPID,SECRET 2.在apps/users/views.py内: from chaoyuecun.settings import APPID,SECRET import urllib.request from rest_framework.views import APIView from rest_framework.response import Response from rest_framework.renderers…
1.安装djangorestframework 1.安装djangorestframework及其依赖包markdown.django-filter. pip install djangorestframework markdown django-filter 2.在settings中注册,如下: INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'dj…
1.背景 windows server 2008 下 每天会有 *.sql数据文件 需要上传到linux 中的mysql数据库中 而运维人员是在 windows server 下使用 xshell 连接 linux 下进行导入导出来进行操作 客户要求:1.点击桌面上的程序达成 上传到linux下的mysql数据库中. 2.要解决的问题 1.通过什么来让数据文件 上传到 linux 下 2.怎么才可以点击一下就达成 window下的数据文件 上传到linux下 3.数据文件到达后 怎么做才可以 在…
1.首先下载mysql安装文件,下载地址:https://dev.mysql.com/downloads/mysql/ 2.将下载下来的压缩包解压到本地一个文件夹中 3.在文件根目录下新增my.ini文件,配置以下信息: [mysql]# 设置mysql客户端默认字符集default-character-set=utf8 [mysqld]#设置3306端口port = 3306 # 设置mysql的安装目录basedir=C:\\mysql-8.0.13-winx64# 设置mysql数据库的数…
Linux 对mysql远程连接的授权操作 首先linux连接mysql数据库 授权: grant all on *.* to ' with grant option; //允许账户root从任何主机连接到所有数据库(*.*) grant all on test.* to ' with grant option; //允许账户user从任何主机连接到test数据库(test.*) 释放远程授权: revoke all on *.* from 'user'@'%'; //禁止用户user从任何主机…
1.添加腾讯云安全组规则的MySQL 3306端口 将所有端口打开,至少打开3306,不在赘述. 2.打开更改MySQL配置文件 打开配置文件 vi /etc/mysql/mysql.conf.d/mysqld.cnf (要有权限才能更改) 注释掉只允许本地访问的这一行 address = 127.0.0.1 或者将改成允许地址改成 0.0.0.0 3.在MySQL用户表添加用户并将host设置未所有IP都能访问 登录: mysql -u root -h -p 打开数据库: use mysql…
授权法: 在安装mysql的机器上运行: 1.# ./bin/mysql -uroot -p //这样应该可以进入MySQL服务器 2.mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'WITH GRANT OPTION //赋予任何主机访问数据的权限 例如,你想myuser使用mypassword从任何主机连接到mysql服务器的话. (最为常用) GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%'IDENTIF…
我们此时只要写一个Servlet就可以了: public class UpdateMenuServlet extends HttpServlet { /** * */ private static final long serialVersionUID = 1L; // 构造方法 public UpdateMenuServlet() { super(); } // 销毁方法 public void destroy() { super.destroy(); } // 响应Get请求 public…