原文:Mysql8 安装过程及安装过程系列问题记录前言: 今天,想装个高版本一点的mysql试试,于是下载了一个mysql8的zip版本。 地址:https://dev.mysql.com/downloads/file/?id=484900 没想到安装的过程,竟然卡了半个下午和半个晚上,才走通,坑啊... ...
分类:
数据库 时间:
2019-03-17 15:45:00
阅读次数:
229
+ "ssh免密登录" + "集群运维" 生成秘钥,一路enter 讲id_rsa.pub文件追加到授权的key文件中 cat ~/.ssh/id_rsa.pub ~/.ssh/authorized_keys 把第一台机器的authorized_keys文件复制到第二台机子上,把公钥给对方,才能免密 ...
分类:
其他好文 时间:
2019-03-17 10:22:08
阅读次数:
203
# sys模块# sys 模块代表了 Python 解释器,主要用于获取和 Python 解释器相关的信息。 # sys 模块的参考页面为 https://docs.python.org/3/library/sys.html。 # sys.argv:获取运行 Python 程序的命令行参数。其中 s... ...
分类:
编程语言 时间:
2019-03-17 01:23:41
阅读次数:
221
Description The Leiden University Library has millions of books. When a student wants to borrow a certain book, he usually submits an online loan form ...
分类:
其他好文 时间:
2019-03-16 20:47:16
阅读次数:
102
error TS2585: 'Promise' only refers to a type, but is being used as a value here. Do you need to change your target library? Try changing the `lib` co ...
分类:
其他好文 时间:
2019-03-16 09:50:07
阅读次数:
2939
要确保用 new 动态分配的内存空间在程序的各条执行路径都能被释放是一件麻烦的事情。C++ 11 模板库的 <memory> 头文件中定义的智能指针,即 shared _ptr 模板,就是用来部分解决这个问题的。 只要将 new 运算符返回的指针 p 交给一个 shared_ptr 对象“托管”,就 ...
分类:
编程语言 时间:
2019-03-16 09:19:29
阅读次数:
248
现要在目录 mainDir 下编译库libmain.so, 但是其 依赖于 > libsub.so,sub.so在目录 mainDir / subDir 下,且subDir不在LD_LIBRARY_PATH以及环境变量中。 现有如下执行: 1. gcc -share -o libmain.so ma ...
分类:
其他好文 时间:
2019-03-14 13:30:41
阅读次数:
196
nginx: [emerg] unknown directive "ssl" in /usr/local/nginx/conf/nginx.conf:102 到解压的nginx目录下 ./configure --with-http_ssl_module 当执行上面语句,出现./configure: ...
分类:
其他好文 时间:
2019-03-13 22:58:54
阅读次数:
473
1、Multiple commands produce 'xxx/Info.plist'2、iOS 12系统WiFi获取SSID(wifi名称)和BSSID(mac地址)失败3、Xcode 10中#import的时候闪退或导入头文件不提示4、[Xcode 10] library not found ...
分类:
移动开发 时间:
2019-03-13 20:12:01
阅读次数:
1248
Reference: [1] Python all() - Python Standard Library [2] Python any() - Python Standard Library all() and any() 函数主要用于需要判断某个数组是不是都满足了某种条件,设置一个跟数组一样的 ...
分类:
编程语言 时间:
2019-03-13 14:58:10
阅读次数:
256