Connected to an idle instance:连接到空闲实例 原因:数据库或者监听没启动 ...
分类:
其他好文 时间:
2020-07-03 12:33:11
阅读次数:
46
挺久没有登录的 oracle 数据库,因为公司要求加固密码,登录后修改失败 1、启动数据库的同时启动控制文件、数据文件,提示:cannot mount database in EXCLUSIVE mode 2、启动数据库的同时启动控制文件、不启动数据文件,提示:database not mounte ...
分类:
数据库 时间:
2020-07-03 10:36:46
阅读次数:
132
排查流程: 1.使用ping命令,看网络是否联通。 2.使用netstat -nltp | grep 3306查看mysql服务是否正常开启。 3.再次检测一次Mysql的连接配置是否正确(用户名和密码是否正确,格式端口是否是整型,其他格式是否正确)。 4.以上都检测好了,但是连接过程中还是出现超时 ...
分类:
数据库 时间:
2020-07-03 01:17:18
阅读次数:
390
import paramiko client = paramiko.SSHClient() client.connect(serverIp, port=serverPort, username=serverUser) 报警告如下: paramiko\ecdsakey.py:164: Cryptogr ...
分类:
编程语言 时间:
2020-07-02 20:05:17
阅读次数:
120
1、准备工作:存在的mysql的数据库表、创建好的elasticsearch索引 2、下载mysql-connector 下载地址:https://dev.mysql.com/downloads/connector/j/ 选择 PlatForm Independent 下载后解压后得到connect ...
分类:
数据库 时间:
2020-07-02 20:00:27
阅读次数:
99
OutOfMemory(内存溢出异常OOM) java.lang.OutOfMemoryError :Thrown when the Java Virtual Machine cannot allocate an object because it is out of memory, and no ...
分类:
其他好文 时间:
2020-07-02 16:54:56
阅读次数:
65
php7版本openssl扩展升级安装,swoole openssl扩展安装高版本自定义编译安装 php升级openssl扩展,swoole升级openssl扩展 报错configure: error: Cannot find OpenSSL's libraries异常使用第三项 php升级open ...
分类:
Web程序 时间:
2020-07-02 16:12:30
阅读次数:
76
问题现象 部署的docker容器运行一端时间以后,由于需要修改配置,需要重启容器,但是重启的时候,报如下错误: Error response from daemon: Cannot restart container rsnmp_v4: OCI runtime create failed: cont ...
分类:
其他好文 时间:
2020-07-02 13:19:58
阅读次数:
66
Alice and Bob have candy bars of different sizes: A[i] is the size of the i-th bar of candy that Alice has, and B[j] is the size of the j-th bar of ca ...
分类:
其他好文 时间:
2020-07-02 10:42:14
阅读次数:
53
一、参考源码 <?php $localhost="localhost"; $root="root"; $password="123456"; $datebest="db_ku"; $conn=mysqli_connect($localhost,$root,$password,$datebest) o ...
分类:
数据库 时间:
2020-07-02 09:34:53
阅读次数:
105