From b5d6ef65fda24d9ac2c21d93ad332bfa0ac2db56 Mon Sep 17 00:00:00 2001 From: alexr018350 Date: Thu, 23 Feb 2023 09:53:02 +0545 Subject: [PATCH 1/2] error message Signed-off-by: alexr018350 --- docs/installation/standalone.mdx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/docs/installation/standalone.mdx b/docs/installation/standalone.mdx index 361f7ddd2c4..7a8ef8832f3 100644 --- a/docs/installation/standalone.mdx +++ b/docs/installation/standalone.mdx @@ -347,6 +347,19 @@ Later we will access KubeVela on local machine, we will install vela CLI on loca + + +
+ possible error and troubleshooting + + ``` + Installing VelaD: + Error: "velad: command not found" - This may occur if the velad binary is not in your system PATH. To resolve this, make sure that the binary is in your system PATH by following the installation instructions carefully. + Error: "velad is not executable" - This may occur if the velad binary does not have the correct permissions. To resolve this, make sure that the binary has executable permissions by running the following command: "chmod +x velad". + ``` + +
+ ### 3. Install VelaUX VelaUX is a dashboard for KubeVela. It is a web application that runs in your cluster. You can access it with your browser. @@ -396,6 +409,17 @@ VelaUX needs authentication. The default username is `admin` and the password is It requires you to override with a new password for the first login, please make sure to remember the new password. +
+ possible error and troubleshooting + + ``` + Installing VelaUX: + Error: "unable to find velaux addon" - This may occur if there is an issue with locating the velaux addon. To resolve this, make sure that the velaux addon is installed properly by running the "vela addon enable ~/.vela/addons/velaux" command. If the issue persists, check the advanced installation arguments for the velaux addon. + Error: "vela port-forward: command not found" - This may occur if the vela CLI is not properly installed or added to your system PATH. To resolve this, make sure that the vela CLI is installed and added to your system PATH by running the "velad install" command. + ``` + +
+ ### 4. Access cluster From Local (Optional) You can access KubeVela with your local machine. Make sure you add `--bind-ip` when executing `velad install` command in the last step on the server. From 9ba6e5b12aab3a3720730db7ae6217949d68965c Mon Sep 17 00:00:00 2001 From: alexr018350 Date: Thu, 23 Feb 2023 12:28:55 +0545 Subject: [PATCH 2/2] details tag removed Signed-off-by: alexr018350 --- docs/installation/standalone.mdx | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/installation/standalone.mdx b/docs/installation/standalone.mdx index 7a8ef8832f3..f60a517d23a 100644 --- a/docs/installation/standalone.mdx +++ b/docs/installation/standalone.mdx @@ -347,8 +347,6 @@ Later we will access KubeVela on local machine, we will install vela CLI on loca - -
possible error and troubleshooting