生成 Application Container,以及 Application PDB 的作成方法:Oracle 的 CDB 中,本来就是可以有很多的 PDB,但是 Oracle 引入了一种特殊的 PDB,这种 PDB 被声明为:"AS APPLICATION CONTAINER"。这以后,我们可以 ...
分类:
移动开发 时间:
2021-03-29 12:05:12
阅读次数:
0
以管理员身份打开CMD,执行以下命令,重启生效。 ipconfig /flushdns nbtstat –r netsh int ip reset netsh winsock reset ...
分类:
移动开发 时间:
2021-03-15 11:33:19
阅读次数:
0
文件备份与重命名 # 2种方式打开文件、备份文件、 import os # 打开文件 class FileOpen: @staticmethod def file_open1(file): fp = open(file, "w+", encoding="utf-8") # 无需flush,因为clo ...
分类:
其他好文 时间:
2021-03-15 10:54:22
阅读次数:
0
如果忘记mysql的密码 修改配置文件跳过密码直接登录 在[mysqld]下面添加 vim /etc/my.cnf skip-grant-tablses 重启mysql服务 service mysqld restart /etc/rc.d/init.d/mysqld restart 登录mysql ...
分类:
数据库 时间:
2021-03-02 12:39:27
阅读次数:
0
public function getAccesstoken(){ $appid = ''; /*小程序appid*/ $srcret = ''; /*小程序秘钥*/ $tokenUrl="https://api.weixin.qq.com/cgi-bin/token?grant_type=clie ...
分类:
微信 时间:
2021-02-24 13:24:26
阅读次数:
0
今天数据库出现点问题,请教同事给我看看,发现他不能通过 ip 地址访问我的本地 mysql 服务器。于是上网找了一下,步骤如下: 1、cmd 打开指令页面 c:\>mysql -u root -p 输入密码 mysql> 2、打开 mysql 数据库 use mysql 检索 user 和 host ...
分类:
数据库 时间:
2021-02-23 14:16:19
阅读次数:
0
步骤1、修改mysql配置文件 [root@localhost ~]# vi /etc/my.cnf 在底部添加一行 skip-grant-tables 保存退出 重启mysql [root@localhost ~]# systemctl restart mysqld 步骤2、将root密码置空 [ ...
分类:
数据库 时间:
2021-02-22 12:44:28
阅读次数:
0
mysql8: alter user 'root'@'localhost' identified by '123456'; mysql5.7: update user set authentication_string = password('123456') where user = 'root' ...
分类:
数据库 时间:
2021-02-22 11:45:52
阅读次数:
0
1.防火墙开放端口 firewall-cmd --zone=public --add-port=8848/tcp --permanent firewall-cmd --list-ports 开放centOS 网关,远程连接 grant all privileges on *.* to 'root'@ ...
SpringSecurity的身份认证流程、SpringSecurity做JWT身份认证流程和请求的认证流程 ...
分类:
编程语言 时间:
2021-02-16 11:54:35
阅读次数:
0