|
|
|
@ -9,23 +9,23 @@ import TabItem from '@theme/TabItem';
|
|
|
|
|
|
|
|
|
|
## 服务启动
|
|
|
|
|
|
|
|
|
|
1)MySQL 创建名为 `hippo4j_manager` 的数据库,字符集选择 `utf8mb4`,并导入 [Hippo4J 初始化 SQL 语句](https://github.com/longtai-cn/hippo4j/blob/develop/hippo4j-server/conf/hippo4j_manager.sql)。
|
|
|
|
|
MySQL 创建名为 `hippo4j_manager` 的数据库,字符集选择 `utf8mb4`,并导入 [Hippo4J 初始化 SQL 语句](https://github.com/longtai-cn/hippo4j/blob/develop/hippo4j-server/conf/hippo4j_manager.sql)。
|
|
|
|
|
|
|
|
|
|
2)接下来启动服务端,提供两种启动方式,Docker 运行以及编译源码运行。
|
|
|
|
|
使用 Docker 运行服务端,可以灵活定制相关参数。如果 MySQL 非 Docker 部署,`MYSQL_HOST` 需要使用本地 IP。
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
docker run -d -p 6691:6691 --name hippo4j-server \
|
|
|
|
|
-e MYSQL_HOST=localhost \
|
|
|
|
|
-e MYSQL_HOST=127.0.0.1 \
|
|
|
|
|
-e MYSQL_PORT=3306 \
|
|
|
|
|
-e MYSQL_DB=hippo4j_manager \
|
|
|
|
|
-e MYSQL_USERNAME=root \
|
|
|
|
|
-e MYSQL_PASSWORD=root \
|
|
|
|
|
hippo4j-server
|
|
|
|
|
hippo4j/hippo4j-server
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
> 如果使用源码编译的方式,启动 [Hippo4J-Server](https://github.com/longtai-cn/hippo4j/tree/develop/hippo4j-server) 模块下 ServerApplication 应用类。
|
|
|
|
|
> 如果没有 Docker,可以使用源码编译的方式,启动 [Hippo4J-Server](https://github.com/longtai-cn/hippo4j/tree/develop/hippo4j-server) 模块下 ServerApplication 应用类。
|
|
|
|
|
|
|
|
|
|
3)启动 [hippo4j-spring-boot-starter-example](https://github.com/opengoofy/hippo4j/tree/develop/hippo4j-example/hippo4j-spring-boot-starter-example) 模块下 Hippo4JServerExampleApplication 应用类。
|
|
|
|
|
启动示例项目,[hippo4j-spring-boot-starter-example](https://github.com/opengoofy/hippo4j/tree/develop/hippo4j-example/hippo4j-spring-boot-starter-example) 模块下 Hippo4JServerExampleApplication 应用类。
|
|
|
|
|
|
|
|
|
|
访问 Server 控制台,路径 `http://localhost:6691/index.html`,默认用户名密码:admin / 123456
|
|
|
|
|
|
|
|
|
|