linux时区设置、mysql时区设置
摘要:1 linux时区设置 直接复制时区文件,覆盖/etc/localtime cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 2 mysql时区设置 先用now()获取系统时间,验证 //设置时区,更改为东八区 set global time_z
阅读全文
maven的repository设置以及常用命令
摘要:1 仓库配置: 参考:https://www.cnblogs.com/yuanchaoyong/p/7090004.html 2 常用命令 mvn clean package -Dmaven.test.skip=truemvn -U clean install -Dmaven.test.skip=t
阅读全文
sts jar打开class文件中文乱码
摘要:参考链接:https://blog.csdn.net/bell2008/article/details/40978959 复制一下: 1,问题来源是在eclipse中直接查看springside的class(由eclipse自动反编译)里面注释的乱码问题: Preferences-General-W
阅读全文
搭建pinpoint测试环境
摘要:1 下载pinpoint git clone https://github.com/naver/pinpoint.git git switch 1.8.5 2 安装hbase:见上篇随笔 3 导入hbase初始数据 [root@zkslave2 bin]# ./hbase shell /tmp/in
阅读全文
centos下hbase安装(单机)
摘要:1 版本 axel -n 30 http://archive.apache.org/dist/hbase/hbase-1.0.3/hbase-1.0.3-bin.tar.gz 其中 axel在centos7.6下的安装参考https://www.hugeserver.com/kb/install-a
阅读全文
Java AES加解密
摘要:import java.util.Base64; import javax.crypto.Cipher; import javax.crypto.spec.IvParameterSpec; import javax.crypto.spec.SecretKeySpec; public class CipherEncrptTest { public static void main(String[]
阅读全文
windows下常用命令
摘要:jps -l taskkill /f /pid 5476
阅读全文