一、安装Dockerpacman -S docker 二、拉取seafile环境docker pull jenserat/seafile按照网上教程,执行这步时报错:"Cannot connect to the Docker daemon"所以不能抄书啊,连服务都没开启:systemctl star ...
分类:
系统相关 时间:
2020-06-15 22:47:32
阅读次数:
66
tpautoconf -verify ndmp_host_name 成功的验证与如下所示类似: Connecting to host "stripes" as user "root"... Waiting for connect notification message... Opening ses ...
分类:
其他好文 时间:
2020-06-15 17:46:05
阅读次数:
79
一、将文本拖拽到QComboBox中 想让控制支持拖拽,要满足以下几个条件: 1)被拖拽的控件要设置支持拖拽 setDragEnabled(True) 2)拖拽放置控件要设置允许接收 setAcceptDrops(True) 完整案例Demo: import sys # 导入QT,其中包含一些常量, ...
分类:
编程语言 时间:
2020-06-15 14:12:52
阅读次数:
73
1 import pymysql 2 import pandas 3 db=pymysql.connect(host='localhost',port=3306,user='root',database='lihao',password='lh19990317') 4 #cursor=db.curs ...
分类:
数据库 时间:
2020-06-15 12:14:50
阅读次数:
58
今天写了一个requests爬虫,在运行的时候发生了requests.exceptions.ConnectionError:('Connection aborted.', ConnectionResetError(54, 'Connection reset by peer')) 错误。 我马上goo ...
分类:
其他好文 时间:
2020-06-14 16:56:33
阅读次数:
408
window10系统,先cmd打开chrome, chrome --remote-debugging-port=9222 执行脚本 from selenium import webdriver from selenium.webdriver.chrome.options import Options ...
分类:
其他好文 时间:
2020-06-14 16:32:39
阅读次数:
221
##WPF 连接SQLServer数据库 public void ConnectionSQLServerFunc() { //连接数据库字符串 string strConn = "Data Source=.;Initial Catalog=MyTest;User ID=sa;Password=pas ...
分类:
数据库 时间:
2020-06-14 10:59:33
阅读次数:
116
@OnConnect 这是一个实现了监听connect()函数的注解,类似于切面的后置通知,当用户成功建立连接后再执行。 @OnDisconnect 这是实现了监听disconnect()函数的注解,类似于切面的后置通知,当用户断开连接后再执行。 @OnEvent("String") 这是表示下方函 ...
分类:
编程语言 时间:
2020-06-14 00:58:03
阅读次数:
167
timeout connect 打开 sql configuration 配置管理器 查询一下 IP是否开启了;看下状态; 重新启动sql server 服务 ...
分类:
数据库 时间:
2020-06-13 23:33:31
阅读次数:
71
加个\G在最后现就可以了. mysql> show variables like '%max_connections%' \G;*************************** 1. row ***************************Variable_name: max_conne ...
分类:
数据库 时间:
2020-06-13 15:50:58
阅读次数:
158