容器配置https 发表于 2018-11-27 | 分类于 web , container测试证书 通过jdk的keytool工具生成秘钥库 keytool -genkeypair -alias "localhost" -keyalg "RSA" -keystore "d:\localhost.keystore" 参考示例: 如果不想这么复杂可以参考如下示例: keyt ...阅读全文 »
Git 问题小结 发表于 2018-07-24 | 分类于 gitGit Status 中文乱码解决 现象: 解决办法:打开Git Bash,执行git config --global core.quotepath false linux init git project GitHub上创建一个repositories项目,比如 :https:/ ...阅读全文 »
Eclipse远程debug 发表于 2018-07-23 | 分类于 java , eclipse添加远程debug参数tomcat在catalina.sh中添加如下内容: CATALINA_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n"(不要换行,要在同一行) windows 环境添加 ...阅读全文 »
Linux下开机自启动 发表于 2018-05-15 | 分类于 linux 今天服务器宕机,重启系统。应用没有自动恢复(启动),导致服务中断一段时间。抽空研究了下Linux的自启动方式。 服务器信息: Operting System Type : GNU/Linux Check OS Release ...阅读全文 »
Mysql主从同步 发表于 2018-05-15 | 分类于 mysql 阿里云服务快到期了,重新换了腾讯云的服务器。数据库懒的备份,直接配置一个主从同步,到时候就不用在去备份恢复。 Master Server配置添加同步账户 连接Mysql服务[mysql -uroot -pxxxx] mysql> create user repl; Query ...阅读全文 »