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
Copy file name to clipboardExpand all lines: documentation/1.0/content/setup/install.md
+41Lines changed: 41 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,47 @@ description: "Install the WKT UI application and check for updates."
9
9
1. Download the latest WebLogic Kubernetes Toolkit UI (WKT UI) application installers from the [GitHub Releases section](https://github.com/oracle/weblogic-toolkit-ui/releases) of this repository.
10
10
2. Simply run the appropriate installer for your operating system.
11
11
12
+
If you download and run the `AppImage` file, you get the added benefits of 1.) Not requiring an installation or root access and 2.) Being able to participate in the auto-update functionality like MacOS and Windows.
13
+
14
+
15
+
**NOTE**: On Linux, to get _all_ the dependencies and have them installed in the correct order, you need to use the package manager to install the `rpm` or `deb` file.
16
+
First, be sure to review the Linux prerequisites [here]({{< relref "/setup/prerequisites.md" >}}).
17
+
18
+
- For RPM-based systems, download the latest `wktui``rpm` package from https://github.com/oracle/weblogic-toolkit-ui/releases, then use either `yum` or `dnf`; for example:
19
+
```
20
+
sudo yum -y localinstall wktui_1.0.0_amd64.rpm
21
+
```
22
+
23
+
- For Debian-based systems, download the latest `wktui` `deb` package from https://github.com/oracle/weblogic-toolkit-ui/releases, then run:
24
+
```
25
+
sudo apt install ./wktui_1.0.0_amd64.deb
26
+
```
27
+
28
+
#### Helpful Hints
29
+
30
+
- When launching the WKT UI application, if you see this:
31
+
```
32
+
libGL error: No matching fbConfigs or visuals found
33
+
libGL error: failed to load driver: swrast
34
+
```
35
+
This is harmless and can be removed by setting the environment variable:
36
+
37
+
`export LIBGL_ALWAYS_INDIRECT=1`
38
+
39
+
40
+
- If you are storing credentials in the OS native store, and you see this failure message:
41
+
```
42
+
Error occurred in handler for 'save-project': Error: Failed to save credential for image.
43
+
imageRegistryPushUser: Error: No such interface "org.freedesktop.Secret.Collection" on object at path /
44
+
org/freedesktop/secrets/collection/login
45
+
at /tmp/.mount_WebLogpIPFto/resources/app.asar/app/js/credentialManager.js:92:32
46
+
```
47
+
You can solve it by running this command (only once) before launching the WKT UI application:
Application startup detects Internet connectivity to GitHub. If it fails to connect, a `Network Configuration` dialog appears in which you can set or modify your proxy settings, test your changes, and then restart the application.
13
54
14
55
Launching the application displays a thorough "Introduction" to the WKT UI. Step through it or dismiss it; you can peruse it at any time using `Help > Show Introduction`.
Copy file name to clipboardExpand all lines: documentation/1.0/content/setup/prerequisites.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,3 +35,27 @@ In addition to these local software dependencies, you will need a Kubernetes clu
35
35
containerized WebLogic Server domain and its applications. If you do not already have a model, then you can either write
36
36
one by hand using the WKT UI application or discover the model from an existing domain. Most likely, you'll want to start
37
37
with a WebLogic domain that can be used to discover the model from the domain.
38
+
39
+
#### Linux Prerequisites
40
+
41
+
For RPM-based systems, such as Oracle, RedHat, CentOS, and some others:
42
+
43
+
For storing credentials in the OS native credentials store, you must have a desktop environment. If your system does not have a graphical desktop environment,
44
+
you can install one; for example, installing GNOME Desktop on Oracle Linux:
For storing credentials as an encrypted project file, and for a minimum GUI requirement, make sure the following packages are installed in your system:
For Debian-based systems, such as Ubuntu and Debian:
55
+
56
+
For storing credentials in the OS native credentials store, you must have a desktop environment. If your system does not have a graphical desktop environment,
57
+
you can install one; for example, installing GNOME on Ubuntu 20x:
0 commit comments