mac
kitajima--
大連東軟情報学院を卒業しました、计算机本科、2008年开始走向工作岗位、向け日ソフトウェア開発したことがある、J2EE项目经理、VB.NET研发、WEB开发、Jsp、Dwr、JavaEE、Spring 、Hibernate、Struts、Cvs、SQLSERVER、Oracle、Weblogic 等。
展开
-
mac os 安装redis
Download, extract and compile Redis with:$ wget http://download.redis.io/releases/redis-5.0.3.tar.gz$ tar xzf redis-5.0.3.tar.gz$ cd redis-5.0.3$ makeThe binaries that are now compiled are ava...原创 2019-02-22 11:25:30 · 644 阅读 · 0 评论 -
java解析日志文件,转为json数组,new Throwable() .getStackTrace()[0].getClassName()使用
此类包括获取上一天日志方法, 关闭文件流方法技术点:JSONObject.fromObject('字符串');JSONArray.add(JSONObject.fromObject('字符串'));package com.log;import net.sf.json.JSONArray;import net.sf.json.JSONObject;import org....原创 2019-09-17 20:09:43 · 1117 阅读 · 1 评论 -
MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk
MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report er...原创 2019-09-10 01:42:56 · 259 阅读 · 1 评论 -
mac mysql5.7.17 64位dmg首次安装后修改root密码
Stop MySQLsudo /usr/local/mysql/support-files/mysql.server stopStart it in safe mode:sudo mysqld_safe --skip-grant-tablesThis will be an ongoing command until the process is finished so open an...原创 2019-08-30 20:06:55 · 295 阅读 · 0 评论 -
idea mvn tomcat7:run能启动但无法访问
原创 2019-03-14 09:21:34 · 2605 阅读 · 1 评论 -
tomcat配置https(二)
cd /tomcat7/conf/service.xml中1. 注释掉 8080 的 连接端口 如: <!-- <Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" ...原创 2019-02-26 11:12:03 · 347 阅读 · 0 评论 -
Mac java keytool生成 https证书(一)
java keytool http://www.kafeitu.me/sso/2010/11/05/sso-cas-full-course.html 1.keytool -genkey -alias wsria -keyalg RSA -keystore /Users/mac/documents/wsriakey 2 . keytool -expor...原创 2019-02-26 11:03:08 · 1888 阅读 · 0 评论 -
Unable to open debugger port (127.0.0.1:51202): java.net.SocketException "Socket closed"
idea 启动项目, 报的 端口占用,连接关闭, 重启电脑也不管用, 比如出现以下问题:Unable to open debugger port (127.0.0.1:51202): java.net.SocketException "Socket closed" 解决办法:mac 系统编辑您的 sudo vim /etc/hosts一定把 127.0.0.1 l...原创 2019-02-26 10:59:30 · 27313 阅读 · 0 评论 -
mac redis自启动,启动,launchctl list |grep redis
1,将redis的启动文件放到shell脚本中执行sudo vi redis-launchd.sh#! /bin/sh#! 备注,把redis安装目录里的 redis-server 和 redis.conf 分别复制到 bin 和 etc 目录,如果没有目录 则新建/usr/local/redis-4.0.14/bin/redis-server /usr/local/red...原创 2019-10-02 00:09:14 · 792 阅读 · 1 评论