上一页 1 2 3 4 5 6 ··· 33 下一页
摘要: 转自:https://blog.csdn.net/elie_yang/article/details/86657851 1:安装erlang环境; 2:安装RabbitMQ, 以上2步都是下载安装,下一步结束;参考官网:http://www.rabbitmq.com/install-windows. 阅读全文
posted @ 2023-11-23 09:35 金虹巴巴 阅读(68) 评论(0) 推荐(0) 编辑
摘要: ALTER DATABASE testDB COLLATE Chinese_PRC_CI_AS; 搜索 复制 阅读全文
posted @ 2023-11-08 13:41 金虹巴巴 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 使用命令行直接运行jar文件: java -jar -Dspring.profiles.active=test demo-0.0.1-SNAPSHOT.jar 启动进程 nohup java -jar demo-0.0.1-SNAPSHOT.jar > log.file 2>&1 &上面的2 和 1 阅读全文
posted @ 2023-10-11 14:51 金虹巴巴 阅读(566) 评论(0) 推荐(0) 编辑
摘要: git status 告诉你有文件被修改过 git diff 查看修改内容 git log 查看提交历史,看要回退到哪个版本 mvn versions:set --设置pom的version 例:1.1.0 git add . --提交更新版本 git commit -m "* " 设置提交内容 g 阅读全文
posted @ 2023-09-20 17:03 金虹巴巴 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 链接:https://pan.baidu.com/s/1-EsuGaw0_9ubw5_9AhRS2Q 提取码:1hp4 一,Elasticsearch环境准备 elasticsearch-5.6.8.zip进行解压(安装目录随意) 启动服务: 访问http://127.0.0.1:9200,显示如下 阅读全文
posted @ 2023-09-08 16:13 金虹巴巴 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 1.查看哪个进程占用了6379端口 或则判断端口为6379服务是否启动netstat -atpln | grep 6379或lsof -i:6379 2.然后根据查出的进程号查询相应的服务ps -ef | grep PID 3.查询服务的进程号 观察结果是否与1中netstat的一致ps -ef | 阅读全文
posted @ 2023-09-08 11:07 金虹巴巴 阅读(1016) 评论(0) 推荐(0) 编辑
摘要: 1.nvm nvm list //查找本电脑上所有的node版本 - nvm list //查看已经安装的版本 - nvm list installed //查看已经安装的版本 - nvm list available //查看网络可以安装的版本 2.nvm install //安装最新版本nvm 阅读全文
posted @ 2023-08-23 09:28 金虹巴巴 阅读(1795) 评论(0) 推荐(0) 编辑
摘要: 1、提高允许的max_connect_errors数量(治标不治本)a.命令行修改 修改max_connection_errors的数量为1000 mysql -h 123.57.78.101 -P 3306 -uroot -p123456 set global max_connect_errors 阅读全文
posted @ 2023-08-10 16:58 金虹巴巴 阅读(442) 评论(0) 推荐(0) 编辑
摘要: window+R 组合键,输入【cmd】命令,调出窗口 netstat -aon|findstr "1198" tasklist|findstr "19800" C:\Users\mytest>netstat -aon|findstr "1198" TCP 0.0.0.0:1198 0.0.0.0: 阅读全文
posted @ 2023-07-27 10:20 金虹巴巴 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 搜索 复制 阅读全文
posted @ 2023-07-17 10:50 金虹巴巴 阅读(3) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 33 下一页