You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apache Linkis sometimes debugs exceptions when submitting tasks, such as: insufficient resources; you can replace or append this configuration in `linkis-cg-linkismanager.properties`.
98
112
99
113
| parameter name | default value | description |
@@ -102,7 +116,7 @@ Apache Linkis sometimes debugs exceptions when submitting tasks, such as: insuff
102
116
103
117

104
118
105
-
### 2.5 Enable engine debugging
119
+
### 2.6 Enable engine debugging
106
120
Apache Linkis EC can enable debugging mode, and this configuration can be replaced or added in `linkis-cg-linkismanager.properties`.
107
121
108
122
| parameter name | default value | description |
@@ -111,7 +125,7 @@ Apache Linkis EC can enable debugging mode, and this configuration can be replac
111
125
112
126

113
127
114
-
### 2.6 Hive metadata configuration
128
+
### 2.7 Hive metadata configuration
115
129
The public-service service of Apache Linkis needs to read hive metadata; this configuration can be replaced or appended in `linkis-ps-publicservice.properties`.
116
130
117
131
| parameter name | default value | description |
@@ -122,7 +136,7 @@ The public-service service of Apache Linkis needs to read hive metadata; this co
122
136
123
137

124
138
125
-
### 2.7 Linkis database configuration
139
+
### 2.8 Linkis database configuration
126
140
Apache Linkis access uses Mysql as data storage by default, you can replace or append this configuration in `linkis.properties`.
127
141
128
142
| parameter name | default value | description |
@@ -133,7 +147,7 @@ Apache Linkis access uses Mysql as data storage by default, you can replace or a
133
147
134
148

135
149
136
-
### 2.8 Linkis Session cache configuration
150
+
### 2.9 Linkis Session cache configuration
137
151
Apache Linkis supports using redis for session sharing; this configuration can be replaced or appended in `linkis.properties`.
138
152
139
153
| parameter name | default value | description |
@@ -145,7 +159,7 @@ Apache Linkis supports using redis for session sharing; this configuration can b
145
159
146
160

147
161
148
-
### 2.9 Linkis module development configuration
162
+
### 2.10 Linkis module development configuration
149
163
When developing Apache Linkis, you can use this parameter to customize the database, Rest interface, and entity objects of the loading module; you can modify it in `linkis-ps-publicservice.properties`, and use commas to separate multiple modules.
150
164
151
165
| parameter name | default value | description |
@@ -157,7 +171,7 @@ When developing Apache Linkis, you can use this parameter to customize the datab
157
171
158
172

159
173
160
-
### 2.10 Linkis module development configuration
174
+
### 2.11 Linkis module development configuration
161
175
This parameter can be used to customize the route of loading modules during Apache Linkis development; it can be modified in `linkis.properties`, and commas are used to separate multiple modules.
162
176
163
177
| parameter name | default value | description |
@@ -166,7 +180,7 @@ This parameter can be used to customize the route of loading modules during Apac
166
180
167
181

168
182
169
-
### 2.11 Linkis file system and material storage path
183
+
### 2.12 Linkis file system and material storage path
170
184
This parameter can be used to customize the route of loading modules during Apache Linkis development; it can be modified in `linkis.properties`, and commas are used to separate multiple modules.
171
185
172
186
| parameter name | default value | description |
@@ -177,4 +191,4 @@ This parameter can be used to customize the route of loading modules during Apac
> OAuth (Open Authorization) is an open standard authorization protocol that allows third-party applications to access protected resources after user authorization, widely used in Single Sign-On (SSO) scenarios.
6
+
7
+
## 1. Implementation Logic
8
+
9
+
Controlled through a unified authentication filter: `org.apache.linkis.server.security.SecurityFilter`.
10
+
11
+
1. Authorization Request: Backend generates authorization link based on configuration, frontend redirects user to authentication server
12
+
2. User Authorization: After user authentication, authentication server returns authorization code
13
+
3. Token Acquisition: Backend exchanges authorization code for access token with authentication server
14
+
4. Resource Access: Backend accesses resource server with token to retrieve user information
15
+
16
+
## 2. Usage
17
+
18
+
Default compatibility with GitHub OAuth authentication interface.
0 commit comments