在服务器上安装xxx软件时报错,提示如下: Installation failed with error code: (0x80070643), "Fatal error during installation...". Solution: 1. 将当前登录帐号登录到Local Administra ...
分类:
其他好文 时间:
2020-06-25 09:23:11
阅读次数:
125
上篇文章讲了nginx的常见模块,这边文章将为大家讲一下nginx的负载均衡。 1.准备工作 这里我用三台服务器来做演示: Nginx负载均衡:192.168.10.22:80 Nginx Web1:192.168.10.23:80 Nginx Web1:192.168.10.24:80 为了方便演 ...
分类:
其他好文 时间:
2020-06-24 22:10:10
阅读次数:
66
ERROR 1356 (HY000) ERROR 1305 (42000)
分类:
数据库 时间:
2020-06-24 21:51:10
阅读次数:
115
字典是一种映射 字典就像是一个列表一样,但更加泛化了,是列表概念的推广。在列表里面,索引必须是整数;而在字典里面,你可以用几乎任何类型来做索引了。 从字符串string,到列表 list,再到字典 dictionary,Python的变量类型就是一种泛化的过程,内容在逐步推广,适用范围更大了。 字典 ...
分类:
编程语言 时间:
2020-06-24 21:27:13
阅读次数:
75
报错内容 1592979788: Error: Unable to open log file /Users/bigbird/mqttconfig/mosquitto/log/mosquitto.log for writing. 解决方法 1.查看你的 mosquitto.conf 文件,路径是否正 ...
分类:
其他好文 时间:
2020-06-24 19:47:13
阅读次数:
151
数组常用方法: 数组解构赋值应用 // 交换变量 [a, b] = [b, a] [o.a, o.b] = [o.b, o.a] // 生成剩余数组 const [a, ...rest] = [...'asdf'] // a:'a',rest: ["s", "d", "f"] 数组浅拷贝 const ...
分类:
编程语言 时间:
2020-06-24 18:08:53
阅读次数:
57
原因 因为没有路径也没有权限,所以创建此路径并授权给mysql用户 mkdir /var/log/mariadb touch /var/log/mariadb/mariadb.log # 用户组及用户 chown -R mysql:mysql /var/log/mariadb/ /usr/local ...
分类:
数据库 时间:
2020-06-24 17:51:51
阅读次数:
244
The exit code is 1 because nothing was matched by grep. EXIT STATUS The exit status is 0 if selected lines are found, and 1 if not found. If an error ...
分类:
系统相关 时间:
2020-06-24 16:28:13
阅读次数:
81
ueditor单图上传图片显示上传错误/多图上传显示服务器错误,实际上图片已经传到服务器或者本地 1、这个问题是因为ueditor里面的Upload.class.php里面__construct()方法里面的iconv函数有问题 /*$this->stateMap['ERROR_TYPE_NOT_A ...
分类:
其他好文 时间:
2020-06-24 16:03:10
阅读次数:
213
这个包已经很老了尽量不要用,不过有些包依赖它,要编译工具, 会提示error: Microsoft Visual C++ 14.0 is required,缺少 Microsoft Visual C++ 14.0 或 Windows Kits\10\include\10.0.18362.0\ucrt ...