摘要:
1.node版本问题,提交时会报Accessing non-existent property 'padLevels' of module exports inside circula 错误。 参考https://blog.csdn.net/qxianx/article/details/107843 阅读全文
摘要:
1. jdk8 链接: https://pan.baidu.com/s/1sFVXEf77V95nKhZaItzPBw 提取码: ma4w 复制这段内容后打开百度网盘手机App,操作更方便哦 2.sublime https://www.jianshu.com/p/52fea69c2c0b 3.int 阅读全文
摘要:
YCSB压测elasticsearch 阅读全文
摘要:
查看远程分支 git branch -a 更新远程分支 git remote update origin -p 删除远程分支 git push origin --delete 阅读全文
摘要:
1.安装charles 2.http支持 proxy-proxy setting 3.https支持 help-ssl proxying-install charles root certificate on a mobile device or remote browser 信任证书 help-s 阅读全文
摘要:
场景:本地intelllij想远程调试服务器A,服务器A上起得是resin服务 步骤: 1.登陆服务器A,给resin添加启动参数。 方法一:修改resin.xml,修改完后重启resin服务器,端口号随意定义,本文设置为(8000) 在resin.xml的 <cluster id="web">后面 阅读全文
摘要:
mysql根据my.cnf中max_allowed_packet的大小来限制接收到的数据包大小。 据官网描述,如下图。 数据包的值范围为1k~1G, 只能是1024的倍数,不能整除1024的,会向下取整。 若设置成1025,最终结果为1024。 查看方法: 1.在mysql配置文件中my.cnf中查 阅读全文
摘要:
知识准备: 1、mysql服务的启动/停止/重启: 一、启动方式 1、使用 service 启动:service mysqld start 2、使用 mysqld 脚本启动:/etc/inint.d/mysqld start 3、使用 safe_mysqld 启动:safe_mysqld& 二、停止 阅读全文
摘要:
存放目录: 用 whereis my.cnf 查看mysql配置文件的目录,查看my.cnf的datadir参数可找到mysql数据库文件的存放目录。 本机存放的目录为/var/lib/mysql,进入该目录可以看到以数据库名命名的文件夹。文件夹里便存放着该数据库的所有数据库文件。 数据库文件简介: 阅读全文
摘要:
redis配置查看方式: 1.redis的安装目录查看redis.conf 2.登陆redis客户端,使用 config get xx命令。 比如:查看所有的配置: config get * 查看某一个参数设置, config get slaveof 参数详解: 阅读全文