在项目的配置文件 settings.py 中, INSTALLED_APPS 配置项 加入如下内容 INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'dj ...
分类:
数据库 时间:
2021-04-29 11:45:56
阅读次数:
0
from django.http import JsonResponse from django.contrib.auth import authenticate,login,logout # 登录处理 def signin(request): # 从 HTTP POST 请求中获取用户名、密码参数 ...
分类:
其他好文 时间:
2021-04-29 11:45:13
阅读次数:
0
1.在root权限下登录mysql 2.进入mysql库 mysql>use mysql 3.查看root用户权限 mysql>select User,Host,plugin from user; 4.将root用户的auth_sock改为mysql_native_password mysql>up ...
分类:
数据库 时间:
2021-04-27 14:42:37
阅读次数:
0
Master配置 global_defs { notification_email { root@localhost } notification_email_from keeplived@localhost smtp_server 127.0.0.1 smtp_connect_timeout 30 ...
分类:
其他好文 时间:
2021-04-27 14:42:00
阅读次数:
0
Mongdb mongdb入门 mongdb安装 linux下安装mangdb wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel62-3.2.10.tgz 下载完成后解压 tar zxvf mongodb-linux-x8 ...
分类:
数据库 时间:
2021-04-24 11:58:27
阅读次数:
0
在Linux中用scp进行远程复制文件时需要输入密码,这对于复制大文件使用nohup后台执行的时候是非常糟糕的,但我们可以生成一对密钥,把公钥放置在远程主机上,这样再使用scp时就无须输入密码,具体做法如下: 需求场景:现有主机A、主机B,要从主机A复制文件到主机B。 1.在主机A上使用命令ssh- ...
分类:
系统相关 时间:
2021-04-23 11:56:55
阅读次数:
0
关系型数据库系统(RDBMS):是指使用了关系模型的数据库系统(MySQL、Oracle、DB2、SQL Server) NoSQL数据库:指的是数据分类存放,但是数据之间没有 关联关系的数据库系统(Redis、MongoDB、Neo4J、MemCache) MySQL数据库(使用Navicat工具 ...
分类:
数据库 时间:
2021-04-22 16:13:48
阅读次数:
0
一、解决SpringBoot MongoDB插入文档默认生成_class字段问题 @Configuration public class SpringMongoConfig{ @Bean public MongoTemplate mongoTemplate() throws Exception { ...
分类:
数据库 时间:
2021-04-22 16:06:57
阅读次数:
0
PostgreSQL 9.6安装 1、添加RPM sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm 2、安 ...
分类:
数据库 时间:
2021-04-21 12:51:42
阅读次数:
0
4.19Java.util.Arrays类 JDK提供的工具类 Arrays类包含的内容 排序 查找 填充 打印内容 ... 打印内容 package com.array;?import java.util.Arrays;?/** * 测试Java.util.Arrays工具类的使用 * @auth ...
分类:
编程语言 时间:
2021-04-21 12:15:14
阅读次数:
0