摘要: 1. 官网下载Erlang 和rabbitmq的安装包 yum localinstall erlang-23.2.7-2.el7.x86_64.rpm #本地安装erlang yum localinstall rabbitmq-server-3.8.30-1.el7.noarch.rpm #本地安装 阅读全文
posted @ 2023-02-13 15:56 一样菜 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 1. 验证是否已经安装mysql,查看mysql 版本号 yum list installed mysql* 如果已经安装: Installed Packages mysql.x86_64 8.0.26-1.module_el8.4.0+915+de215114 @AppStreammysql-co 阅读全文
posted @ 2023-02-07 14:16 一样菜 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 从一台服务器迁移到另一台: 数据导出: ./bin/mongoexport -h 127.0.0.1 -u root -p ****** --port 27017 --authenticationDatabase admin -d databaseName -c collectionName -o 阅读全文
posted @ 2022-08-14 00:45 一样菜 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 1、wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-4.0.5.tgz 2. tar -zxvf mongodb-linux-x86_64-4.0.5.tgz 3. cp mongodb-linux-x86_64-4.0.5 -r 阅读全文
posted @ 2022-08-13 22:50 一样菜 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 1. 挂载命令进入虚拟Ubuntu,在命令行终端下输入: sudo mkdir /mnt/shared sudo mount -t vboxsf share /mnt/shared 其中"share"是之前创建的共享文件夹的名字。OK,现在Ubuntu和主机可以互传文件了。 2、卸载的话使用下面的命 阅读全文
posted @ 2022-03-09 17:13 一样菜 阅读(311) 评论(0) 推荐(0) 编辑
摘要: 1. filebeat 配置 Filebeat inputs - type: log paths: - /data/log/project_name/*.log tags: ["project_name"] - type: log paths: - /data/log/project_name/*. 阅读全文
posted @ 2022-01-25 16:33 一样菜 阅读(484) 评论(0) 推荐(0) 编辑
摘要: 1. 查看centos版本 cat /etc/redhat-release 2. 删除文件夹下除了某个文件之外的所有文件 rm -f `ls | grep -v "^super.log$"` //删除除了super.log 文件之外的所有文件 阅读全文
posted @ 2022-01-21 14:23 一样菜 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 1. 创建索引 PUT test //test 索引名称 返回结果:{ "acknowledged": true, "shards_acknowledged": true, "index": "test" } 2. 查询索引设置 GET test/_settings?pretty 返回结果: { " 阅读全文
posted @ 2021-08-18 01:06 一样菜 阅读(310) 评论(0) 推荐(0) 编辑
摘要: leetcode刷题知识点:https://github.com/h2pl/leetcode https://github.com/wolverinn/Waking-Up KOA 阿里框架:https://eggjs.org/zh-cn/intro/quickstart.html Flutter 跨 阅读全文
posted @ 2020-05-09 18:45 一样菜 阅读(596) 评论(0) 推荐(0) 编辑
摘要: 微软win10工具下载链接https://www.microsoft.com/zh-cn/software-download/windows10?OCID=WIP_r_Win10_Body_AddPC 教程链接:https://blog.csdn.net/mildddd/article/detail 阅读全文
posted @ 2019-11-07 10:44 一样菜 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 微信小游戏官方文档:https://developers.weixin.qq.com/minigame/dev/guide/ Cocos微信小游戏开发工具使用博客:https://www.jianshu.com/p/36cf19b90e36 Cocos官方文档:https://www.cocos.c 阅读全文
posted @ 2019-10-22 11:54 一样菜 阅读(528) 评论(0) 推荐(0) 编辑
摘要: 1. JS取消默认事件和阻止事件冒泡 2. 强制类型和隐式类型转换 3. 创建对象的几种方式 4. js中关于函数名和变量名重名,预解析,作用域的问题 5.使用var声明和不使用var声明的变量 6.JS原型和原型链 阅读全文
posted @ 2019-07-05 15:15 一样菜 阅读(295) 评论(0) 推荐(1) 编辑
摘要: 各版本浏览器技术栈支持查询https://caniuse.com/#search=flex 阅读全文
posted @ 2019-05-06 18:04 一样菜 阅读(212) 评论(0) 推荐(0) 编辑
摘要: xiaoming 23 male one grade 23 阅读全文
posted @ 2019-05-06 17:45 一样菜 阅读(543) 评论(0) 推荐(0) 编辑
摘要: spawn exec 转自 http://yijiebuyi.com/blog/3ec57c3c46170789eed1aa73792d99e5.html 阅读全文
posted @ 2019-04-25 16:40 一样菜 阅读(3639) 评论(0) 推荐(0) 编辑
摘要: msvcp、msvcr60、71和80.dll,以及vcomp.dll(不带数字版本号)属于VC++2005版 msvcp、msvcr、vcomp90.dll属于 VC++2008版 msvcp、msvcr、vcomp100.dll属于VC++2010版 msvcp、msvcr、vcomp110.dll属于VC++2012版 msvcp、msvcr、vcomp120.dll属于VC... 阅读全文
posted @ 2019-04-04 10:59 一样菜 阅读(3477) 评论(0) 推荐(0) 编辑
摘要: 在CWinApp::InitInstance()中添加: 用printf函数就可以把信息输出到启运它的那个CMD窗口了。 方法二: 阅读全文
posted @ 2019-03-05 16:51 一样菜 阅读(1368) 评论(1) 推荐(0) 编辑
摘要: console.log 输出中文乱码,怎么解决 是由于DOS窗口显示的编码同logcat日志中不同导致的乱码问题。DOS窗口默认的编码是GBK,而LogCat打印的是UTF-8的编码,所以要设置DOS字符编码: 1, 在当前命令行下输入 chcp 65001,按回车键。这时,当前代码页使用的就是UTF-8编码了。 2, 修改窗口属性,改变字体。在命令行标题栏上点击右键,选择“属性”->“字体””... 阅读全文
posted @ 2018-11-29 11:16 一样菜 阅读(5022) 评论(0) 推荐(0) 编辑
摘要: nw.js官网 https://nwjs.io/downloads/ 中文网:https://nwjs.org.cn/ 参考文档 https://www.cnblogs.com/xuanhun/p/3656003.html https://wizardforcel.gitbooks.io/nwjs- 阅读全文
posted @ 2018-11-29 01:26 一样菜 阅读(671) 评论(0) 推荐(0) 编辑
摘要: 线程队列: libuv,window 可在libuv官网下载相应版本 opencv: 编译的时候opencv的位数要和 node的bit 一致 兼容electron : node-gyp rebuild --version --Debug/--Release --archs=x64/ia32 v8文 阅读全文
posted @ 2018-11-08 18:07 一样菜 阅读(874) 评论(0) 推荐(0) 编辑