Updated 系统启动 (markdown)

LXW
2023-09-13 11:39:33 +08:00
parent 7a597a4e05
commit 1c94f9c50c
2 changed files with 23 additions and 20 deletions

23
构建和启动.md Normal file

@@ -0,0 +1,23 @@
### 系统构建
直接执行supersonic-build.sh即可
### 系统启动
* release包启动
1. 下载最新release包
2. sh assembly/bin/supersonic-daemon.sh
3. http://localhost:9080
* ide启动(默认已构建好)(后端直接访问前端资源的方式)
1. `sh assembly/bin/supersonic-daemon.sh restart llmparser`启动LLM服务
2. IDE本地启动StandaloneLauncher
3. 浏览器访问http://localhost:9080
* ide启动(默认已构建好)(前后端分开启动的方式)
1. `sh assembly/bin/supersonic-daemon.sh restart llmparser`启动LLM服务
2. IDE本地启动StandaloneLauncher
3. start-fe-dev.sh直接启动前端服务
4. http://localhost:9000 **注意这里是9000端口**
PS:
1. Windows环境均有提供对应的bat脚本, 执行即可
2. Ubuntu环境, 启动方式同上, 若出现报错, 可尝试https://support.huaweicloud.com/intl/zh-cn/deployman_faq/deployman_faq_1016.html

@@ -1,20 +0,0 @@
* release包启动
1. 下载最新release包
2. assembly/bin/start-standalone.sh
3. http://localhost:9080
* ide启动(后端直接访问前端资源的方式)
1. `sh assembly/bin/build_ide.sh`构建java服务
2. `sh chat/core/src/main/python/bin/service.sh start`启动LLM服务
3. IDE本地启动StandaloneLauncher
4. 浏览器访问http://localhost:9080
* ide启动(前后端分开启动的方式)
1. `sh chat/core/src/main/python/bin/service.sh start`启动LLM服务
2. IDE本地启动StandaloneLauncher
3. start-fe-dev.sh直接启动前端服务
4. http://localhost:9000 **注意这里是9000端口**
PS:
1. Windows环境均有提供对应的bat脚本, 执行即可
2. Ubuntu环境, 启动方式同上, 若出现报错, 可尝试https://support.huaweicloud.com/intl/zh-cn/deployman_faq/deployman_faq_1016.html