摘要: 一、创建软连接 # cd /usr/local/bin# ln -fs /MYSQLPATH/bin/mysql mysql 阅读全文
posted @ 2021-12-02 15:22 榕树下的回忆 阅读(52) 评论(0) 推荐(0) 编辑
摘要: https://www.linuxprobe.com/install-rabbitmq-on-centos-7.html 阅读全文
posted @ 2021-12-02 15:02 榕树下的回忆 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 一、创建运维账户命令 adduser abcd //新建abcd用户 passwd 123456 //给用户设置密码groupadd test //新建test工作组usermod -g test abcd //把abcd用户增加到test工作组chgrp test /data/data1 //给对 阅读全文
posted @ 2021-11-30 16:32 榕树下的回忆 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 一、下载redis https://download.csdn.net/download/weixin_39025153/52710760 或 wget http://download.redis.io/releases/redis-5.0.8.tar.gz 二、安装redis 将下载好的安装包上传 阅读全文
posted @ 2021-11-30 16:13 榕树下的回忆 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 1.使用fdisk -l 查看硬盘的详细信息 fdisk -l 2.使用fdisk /dev/sdb格式化硬盘 fdisk /dev/sdb 使用fdisk初始化硬盘,然后按p查看分区表,按n创建分区,输入分区数量(默认为1),再按g选择gpt格式,最后按w保存退出 3.挂载 sudo mkfs - 阅读全文
posted @ 2021-11-30 14:45 榕树下的回忆 阅读(462) 评论(0) 推荐(0) 编辑
摘要: 一、Spring 源码下载地址 根据自己的需要选择版本 https://github.com/spring-projects/spring-framework/releasess 二、gradle下载 Spring 源码是基于gradle编译,要根据自己的版本安装对应的gradle. https:/ 阅读全文
posted @ 2021-08-29 18:24 榕树下的回忆 阅读(128) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Linq; using System.Security.Cryptography; us 阅读全文
posted @ 2021-04-13 20:03 榕树下的回忆 阅读(165) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/lyhbky/p/13931619.html 阅读全文
posted @ 2020-11-28 19:51 榕树下的回忆 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 一、搭建数据库连接池 在pom文件中增加相关依赖 <!-- HikariCP 主要依赖--> <dependency> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> <version>${hikaricp.versio 阅读全文
posted @ 2020-08-31 11:23 榕树下的回忆 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 一、为什么要使用Thymeleaf 1、spring boot 内嵌的tomcat不支持jar形式运行jsp页面 2、spring boot 推荐Thymeleaf模版引擎,因为Thymeleaf提供了完美的spring mvc支持 spring boot 提供了大量模版引擎: (1)FreeMak 阅读全文
posted @ 2020-08-29 17:09 榕树下的回忆 阅读(277) 评论(0) 推荐(0) 编辑