码迷,mamicode.com
首页 >  
搜索关键字:connection resilienc    ( 5823个结果
nginx之websocket(十四)
websocket 配置 map $http_upgrade $connection_upgrade { default upgrade; '' close; } server { listen 80; server_name localhost; location /ws { proxy_pass ...
分类:Web程序   时间:2020-09-18 01:47:02    阅读次数:46
一个MySQL 8 MGR的用户密码问题
Plugin group_replication reported;Authentication plugin ‘caching_sha2_password‘ reported error: Authentication requires secure connection. Error_code: MY-002061
分类:数据库   时间:2020-09-17 22:46:40    阅读次数:36
pyodbc 用法
pyodbc 包使用odbc驱动器来连接SQL Server数据库,pyodbc的基本类型是Connection,Cursor和Row,其中,Connection表示客户端和数据库的连接,并用于提交事务;Cursor表示向数据库发送的查询请求,Row表示获取的结果集。 一,ODBC驱动程序 要使用p ...
分类:数据库   时间:2020-09-17 14:06:39    阅读次数:49
Python报错ConnectionError: connection aborted BadStatusLine解决
问题 云端项目上有一个api通过HTTP/GET请求调用返回json数据 使用Python自带requests库发送GET请求查询数据报错如下 requests.exceptions.ConnectionError: ('Connection aborted.', BadStatusLine('HT ...
分类:编程语言   时间:2020-09-17 12:58:56    阅读次数:86
1、JDBC连接数据库
步骤: 1. 加载数据库 MySQL驱动名: com.mysql.jdbc.Driver 加载方式: Class.forName(驱动名) 2.获取数据库连接: Connection con = DriverManager.getConnection(dbUrl, dbUserName, dbPas ...
分类:数据库   时间:2020-09-17 12:55:10    阅读次数:29
Azure Automation (9) 在Automation中使用Connections连接和Variables变量
《Windows Azure Platform 系列文章目录》 在之前的文章中,我们已经介绍了如何创建1个Azure Automation Account。 在本章节中,我们将介绍如何在Azure Automation中使用Connection连接和Variables变量 请先按照之前的文章:Azu ...
分类:其他好文   时间:2020-09-17 12:33:06    阅读次数:26
kombu中 acquire函数中block参数的解释
一直都想知道acquire中block参数的含义,今天查阅相关文档,如下别有一番洞天 Connection and Producer Pools Default Pools Kombu ships with two global pools: one connection pool, and one ...
分类:其他好文   时间:2020-09-14 19:10:24    阅读次数:37
远程连接Linux系统出现Network error: Connection refused
出现这个错误一般是sshd服务没有开启 (sshd服务是linux下的远程连接服务,默认端口号为22) 首先查看ssh服务是否安装在服务器上:rpm -qa|grep ssh 如果安装了可以在虚拟机查看sshd服务是否开启:systemctl status sshd.service 如果没有开启就可 ...
分类:Web程序   时间:2020-09-09 18:39:38    阅读次数:82
mysql Connection Phase Packets
14.2.5 Connection Phase Packets Protocol::Handshake Initial Handshake Packet When the client connects to the server the server sends a handshake packe ...
分类:数据库   时间:2020-09-08 21:06:16    阅读次数:67
jdbc连接,操作
package jdbca; import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.sql.SQLException;import java.sql ...
分类:数据库   时间:2020-08-31 13:07:56    阅读次数:51
5823条   上一页 1 ... 12 13 14 15 16 ... 583 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!