Skip to content

Commit 6bcb53a

Browse files
authored
Merge pull request #65 from WeBankFinTech/1.1.0
1. update linkis url 2. Added pre-deployment considerations in the one-click deployment documentation.
2 parents b4054ea + b656ac7 commit 6bcb53a

File tree

6 files changed

+22
-9
lines changed

6 files changed

+22
-9
lines changed

en_US/Development_Documentation/How_to_add_script_types_in_Scriptis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
In ```linkis-computation-governance\linkis-manager\label-common\src\main\java\com\webank\wedatasphere\linkis\manager\label\entity\engine\EngineType.scala```,
44
Added a new enumeration engine type.
55

6-
For how to implement a new Linkis engine, please refer to: [How to implement a new engine](https://linkis.apache.org/zh-CN/docs/latest/development/new_engine_conn).
6+
For how to implement a new Linkis engine, please refer to: [How to implement a new engine](https://linkis.apache.org/docs/latest/development/new-engine-conn).
77

88
## 2. New front-end
99

en_US/Installation_and_Deployment/DSS&Linkis_one-click_deployment_document_stand-alone_version.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@
9191
- If the user chooses to compile Linkis or DSS by themselves, please make sure to compile Linkis1.1.1 and the latest code that has pulled the DSS `master` branch. For the compilation method, please refer to: <br>
9292
[DSS backend compilation documentation](../Development_Documentation/Compilation_Documentation.md)
9393
[DSS front-end compilation documentation](../Development_Documentation/Front-end_compilation_documentation.md)
94-
[Linkis backend compilation documentation](https://linkis.apache.org/docs/latest/development/linkis_compile_and_package/)
95-
[Linkis front-end compilation documentation](https://linkis.apache.org/docs/latest/development/web_build/)
94+
[Linkis backend compilation documentation](https://linkis.apache.org/docs/latest/development/linkis-compile-and-package/)
95+
[Linkis front-end compilation documentation](https://linkis.apache.org/docs/latest/development/web-build/)
9696
9797
9898
1. For the back-end installation package, you can directly replace the above Linkis back-end installation package or DSS back-end installation package with the relevant installation package after compilation.

zh_CN/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ DataSphere Studio(简称 DSS)是微众银行自研的数据应用开发管
3333
* [Scriptis 数据开发探索使用介绍](用户手册/Scriptis使用文档.md)
3434
* [DSS 工作流使用介绍](用户手册/工作流使用文档.md)
3535
* [数据服务使用介绍](用户手册/数据服务使用手册.md)
36-
* [Linkis 管理台使用介绍](https://linkis.apache.org/zh-CN/docs/latest/user_guide/console_manual)
36+
* [Linkis 管理台使用介绍](https://linkis.apache.org/zh-CN/docs/latest/user_guide/console-manual/)
3737
* [调度中心使用介绍](用户手册/调度中心使用文档.md)
3838

3939

zh_CN/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* [Scriptis 数据开发探索使用介绍](用户手册/Scriptis使用文档.md)
1414
* [DSS 工作流使用介绍](用户手册/工作流使用文档.md)
1515
* [数据服务使用介绍](用户手册/数据服务使用手册.md)
16-
* [Linkis 管理台使用介绍](https://linkis.apache.org/zh-CN/docs/latest/user_guide/console_manual)
16+
* [Linkis 管理台使用介绍](https://linkis.apache.org/zh-CN/docs/latest/user_guide/console-manual/)
1717
* [调度中心使用介绍](用户手册/调度中心使用文档.md)
1818
* [DSS 接口汇总](使用文档/DSS接口汇总.md)
1919
* [DSS 用户登录认证体系](使用文档/用户登录认证体系.md)

zh_CN/安装部署/DSS&Linkis一键部署文档单机版.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# DataSphere Studio & Linkis 单机一键部署文档
22

3+
### 零、部署前注意事项(重要!!!)
4+
- 确保安装的系统为CentOS为6或者7
5+
6+
- 服务器存在多网卡问题。首先通过命令`ifconfig`命令查看服务器激活状态的网卡,若激活状态的网卡数大于1,那么用户就需要通过命令`ifconfig [NIC_NAME] down`(`[NIC_NAME]`为网卡名称)来关闭多余的网卡,以确保激活的网卡数只有1个
7+
8+
- 网卡多IP问题。在确保服务器只存在一个网卡是激活状态的情况下,通过命令`echo $(hostname -I)`查看网卡对应的IP数,若大于1,那么就需要去掉网卡中指定的IP,采用动态获取IP的方式,具体命令如下:
9+
```shell
10+
ip addr flush dev [NIC_NAME]
11+
ifdown [NIC_NAME]
12+
ifup [NIC_NAME]
13+
```
14+
15+
- hostname配置。在安装前用户需要配置hostname到ip的映射
316

417
### 一、基础软件安装
518

@@ -91,8 +104,8 @@
91104
- 如果用户选择自行编译 Linkis 或 DSS,请确保编译的是 Linkis1.1.1 和已拉取了 DSS `master` 分支的最新代码,编译方式可以参考:
92105
[DSS后端编译文档](../开发文档/DSS编译文档.md)
93106
[DSS前端编译文档](../开发文档/前端编译文档.md)
94-
[Linkis后端编译文档](https://linkis.apache.org/zh-CN/docs/latest/development/linkis_compile_and_package)
95-
[Linkis前端编译文档](https://linkis.apache.org/zh-CN/docs/latest/development/web_build)
107+
[Linkis后端编译文档](https://linkis.apache.org/zh-CN/docs/latest/development/linkis-compile-and-package/)
108+
[Linkis前端编译文档](https://linkis.apache.org/zh-CN/docs/latest/development/web-build)
96109
97110
98111
1. 针对后端安装包可直接将上面的 Linkis 后端安装包或 DSS 后端安装包替换成编译后相关安装包即可。
@@ -385,7 +398,7 @@ HIVE_PASSWORD=xxx
385398
- 若用户需要停止所有服务可执行该命令`sh stop-all.sh`,重新启动所有服务就执行`sh start-all.sh`,这两条命令均在xx/dss_linkis/bin目录下执行
386399

387400
### 六、补充说明
388-
- 考虑到安装包过于大的问题,Linkis默认仅提供Hive, Python, Shell, Spark引擎插件,用户若想使用其他引擎,可参考文档: [Linkis引擎的安装](https://linkis.apache.org/zh-CN/docs/latest/deployment/engine_conn_plugin_installation/)
401+
- 考虑到安装包过于大的问题,Linkis默认仅提供Hive, Python, Shell, Spark引擎插件,用户若想使用其他引擎,可参考文档: [Linkis引擎的安装](https://linkis.apache.org/zh-CN/docs/latest/deployment/engine-conn-plugin-installation)
389402
- DSS默认未安装调度系统,用户可以选择安装 Schedulis 或者 DolphinScheduler,具体安装方式见下面表格
390403
- DSS默认仅安装DateChecker, EventSender, EventReceiver AppConn,用户可参考文档安装其他AppConn,如Visualis, Exchangis, Qualitis, Prophecis, Streamis。调度系统可使用Schedulis或DolphinScheduler
391404

zh_CN/开发文档/Scriptis如何新增脚本类型.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
```linkis-computation-governance\linkis-manager\label-common\src\main\java\com\webank\wedatasphere\linkis\manager\label\entity\engine\EngineType.scala``` 中,
44
新增一个全新的枚举引擎类型。
55

6-
关于如何实现一个全新的 Linkis 引擎,请参考:[如何实现一个新引擎](https://linkis.apache.org/zh-CN/docs/latest/development/new_engine_conn)
6+
关于如何实现一个全新的 Linkis 引擎,请参考:[如何实现一个新引擎](https://linkis.apache.org/zh-CN/docs/latest/development/new-engine-conn)
77

88
## 二、前端新增
99

0 commit comments

Comments
 (0)