码迷,mamicode.com
首页 >  
搜索关键字:failed to connect to    ( 16791个结果
Centos 网卡链路聚合
双网卡聚合 有两块网卡,eth1,eth2,将eth1和eth2进行链路聚合。为什么要进行链路聚合,比如下图,有四台电脑连接一个交换机,交换机的出口带宽为1000Mbps,那么如果四台电脑的带宽同时过来就是4000Mbps,那么瓶颈就在这个交换机了,这里解决方案有两种一种是使用万兆网口,另外一种就是 ...
分类:其他好文   时间:2021-07-26 16:47:00    阅读次数:0
Hexo部署出现错误err: Error: Spawn failed解决方式
Hexo部署过程中可能会出现错误 fatal: unable to access 'https://github.com/a956551943/a956551943.github.io/': Encountered end of file FATAL { err: Error: Spawn fail ...
分类:其他好文   时间:2021-07-12 17:48:17    阅读次数:0
go语言defer
defer是延迟执行。如果存在多个defer,运行顺序是先进后出,属于堆栈结构 f, err := os.Create(fileName) if err != nil { fmt.Println("Create file failed:", err) return nil, err } defer ...
分类:编程语言   时间:2021-07-05 19:08:05    阅读次数:0
Mysql连接报错 Can't connect to MySQL server on 'ip' (10060)
在购买服务器且安装了Mysql之后,并且安全组和防火墙都开放了端口,但是还是无法连接 原因就是mysql设置的就是只有本机可以连接 解决办法 # 1. 登录服务器,在服务器上登录mysql # 2. 使用user这个库 use user; # 3. 查看root账户 select host,user ...
分类:数据库   时间:2021-07-05 18:40:36    阅读次数:0
Centos 下启动mysql 报错: Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (111)解决方法
1、启动服务 systemctl restart mysqld.service 报错: 启动数据库Can‘t connect to MYSQL server through socket ''var/lib/mysql/mysql.cock(146 lock timed out:Retry tran ...
分类:数据库   时间:2021-07-05 17:35:04    阅读次数:0
解决Error: command failed: npm install --loglevel error --legacy-peer-deps
今天使用"vue create 项目名"来新建一个vue项目时,出现一下报错: a-后来按照惯性思维尝试了一下: npm install --loglevel error --legacy-peer-deps,发现并不能解决什么问题(X)。 b-后来搜到说要使用管理管身份打开再创建项目,发现还是不行 ...
分类:其他好文   时间:2021-07-05 16:45:07    阅读次数:0
connect to github.com port 443: Timed out
查了别人解决方法,最终自己的解决方法如下,http和https都不要配置代理,主要是下面那句,因为git就是https的 git config --global --unset http.proxy git config --global --unset https.proxy 分别执行了下面的两句 ...
分类:其他好文   时间:2021-07-02 16:13:13    阅读次数:0
循环导出所有行和列
import pymysql,xlwt def export_excel(table_name): host,user,passwd,db='192.168.1.152','root','myjcyf','us_sys' coon=pymysql.connect(host=host,user=use ...
分类:其他好文   时间:2021-07-01 17:27:29    阅读次数:0
failed to execute /bin/bash: Resource temporarily unavailable(Linux系统root无法通过su切换到某个普通用户)
由此报错,可以看到是由于进程过多,资源限制住了,主要检查如下文件: 环境centos7.6 [root@rac02 ~]# cat /etc/security/limits.conf orgrid soft nproc 2047orgrid hard nproc 16384orgrid soft n ...
分类:系统相关   时间:2021-07-01 17:01:50    阅读次数:0
安装less后报错:Module build failed: TypeError: this.getOptions is not a function at Object.
在Vue-cli中使用lang="less"时报错:Module build failed: TypeError: this.getOptions is not a function at Object.loader (D:\WORK\VueProject\XiaoWei\node_modules\ ...
分类:其他好文   时间:2021-06-30 18:25:45    阅读次数:0
16791条   1 2 3 4 ... 1680 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!