Skip to content

Commit c745e18

Browse files
💻 1.2.3.RELEASE CentOS快速安装项目运行环境,快速构建/运维部署/启动项目
1 parent e56aa1e commit c745e18

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

CHANGELOG.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,62 @@
11
# 更新日志 CHANGELOG
22

3+
##
4+
## [V1.2.3-RELEASE] 2019.09.09 :computer:
5+
### ⭐️ New Features
6+
# spring-boot-plusV1.2.3发布,CentOS快速安装环境/构建/部署/启动项目
7+
## 1. 下载安装脚本
8+
> 安装 `jdk`, `git`, `maven`, `redis`, `mysql`
9+
10+
```bash
11+
wget -O download-install-all.sh https://raw.githubusercontent.com/geekidea/spring-boot-plus/dev/docs/bin/install/download-install-all.sh
12+
```
13+
14+
## 2. 运行安装脚本
15+
```bash
16+
sh download-install-all.sh
17+
```
18+
19+
## 3. 修改MySQL密码
20+
```bash
21+
ALTER USER 'root'@'localhost' IDENTIFIED BY 'Springbootplus666!';
22+
exit
23+
mysql -uroot -pSpringbootplus666!
24+
```
25+
26+
## 4. 导入MySQL脚本
27+
```bash
28+
create database if not exists spring_boot_plus character set utf8mb4;
29+
use spring_boot_plus;
30+
source /root/mysql_spring_boot_plus.sql;
31+
show tables;
32+
exit
33+
```
34+
35+
## 5. 下载部署脚本 `deploy.sh`
36+
```bash
37+
wget -O deploy.sh https://raw.githubusercontent.com/geekidea/spring-boot-plus/dev/deploy/deploy.sh
38+
```
39+
40+
## 6. 执行脚本
41+
```bash
42+
sh deploy.sh
43+
```
44+
45+
## 7.访问项目
46+
> SpringBootAdmin管理页面
47+
48+
[http://localhost:8888](http://localhost:8888)
49+
50+
> spring-boot-plus Swagger文档页面
51+
52+
[http://localhost:8888/docs](http://localhost:8888/docs)
53+
54+
## 8. 查看项目运行日志
55+
```bash
56+
tail -f -n 1000 /root/spring-boot-plus-server/logs/spring-boot-plus.log
57+
```
58+
59+
360
## [V1.2.2-RELEASE] 2019.08.26 🏇
461
### ⭐️ New Features
562
- 拦截器启用禁用配置

0 commit comments

Comments
 (0)