码迷,mamicode.com
首页 >  
搜索关键字:password    ( 12255个结果
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)错误
此博客链接: 刚安装完数据库,登录时出现下面错误。 方法1 使用数据库免登录方法,先进入数据库后,再修改默认密码后。 找到my.ini文件,在[mysqld]下面添加下面语句 skip-grant-tables 重启mysql,右键桌面底部菜单栏,选择任务管理器。点击详细信息。 点击服务。 找到my ...
分类:数据库   时间:2020-07-03 23:07:22    阅读次数:89
Oracle 导入 SQL 文件
cmd 进入 命令窗口 输入:sqlplus 用户名/密码@ip地址:端口号/实例名, 例如: sqlplus user/password@192.168.1.229:1521/ORCL 进入SQLPLUS后 输入 : @C:\xxx.sql 回车 ... 漫长的等待 ... 最后 commit o ...
分类:数据库   时间:2020-07-03 23:02:18    阅读次数:69
PreparedStatement 防止sql注入 练习
使用的数据库 MariaDB 10.5.4版本 端口1054 数据库为jt_db,表 为user 数据库的建表和插入相关数据代码: create table user( id int primary key auto_increment, username varchar(50), password ...
分类:数据库   时间:2020-07-03 21:36:13    阅读次数:69
91家纺网,十二次更新,配套的数据连接,数据库产生两个表格
from peewee import * db = MySQLDatabase("91jiafan", host="127.0.0.1", port=3306, user="root", password="123456") class BaseModel(Model): class Meta: d ...
分类:数据库   时间:2020-07-03 19:16:22    阅读次数:79
Docker mysql定时备份
定时备份docker部署的mysql数据 1.新建脚本,添加脚本内容 vi mysql_backup_test_backup.sh #!/bin/bash # 设置mysql的登录用户名和密码(根据实际情况填写) mysql_user="root" mysql_password="root" mys ...
分类:数据库   时间:2020-07-03 19:13:55    阅读次数:89
保存前校验备份
//放在body里面 t:formvalid 外面 <div class="datagrid-toolbar" hidden="hidden" style="float:left;width: 100%;"> <a href="#" class="easyui-linkbutton l-btn l- ...
分类:其他好文   时间:2020-07-03 17:08:05    阅读次数:73
【python】接口自动化测试中,如何校验json返回数据的格式是否正确
校验json返回数据格式是否正确需要用到jsonschema 首先进行安装 pip install jsonschema 示例 from jsonschema import validate result = { "code" : 0, "name": "中国", "msg": "login suc ...
分类:编程语言   时间:2020-07-03 15:29:17    阅读次数:295
MySQL数据库使用报错ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
今天MySQL数据库,在使用的过程中一直报错ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement. 之所以出现这个问题是因为用户可以登录到 ...
分类:数据库   时间:2020-07-03 10:51:19    阅读次数:59
14.Vue技术栈开发实战登录登出以及JWT认证
后端服务 首先来看后端的代码,使用express简单的搭建的一个微服务。运行在3000的端口。 login的接口,它是一个post的请求 首先获取到前端传递过来的userName和password。如果有用户名且有密码的话就获取userInfo token是使用这个jsonwebtoken生成的 传 ...
分类:其他好文   时间:2020-07-03 01:08:04    阅读次数:92
cisco telnet(原创)
1.无用户名(最简单配置) vIOS1: r1(config)#line vty 0 4r1(config-line)#password ciscor1(config-line)#transport input all r1(config-line)#exir1(config)#enable sec ...
分类:Web程序   时间:2020-07-02 21:56:54    阅读次数:82
12255条   上一页 1 ... 46 47 48 49 50 ... 1226 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!