From ab663e4b5246e9adebeefe8bd78fddccf0d018e9 Mon Sep 17 00:00:00 2001 From: Mendon Kissling <59585235+mendonk@users.noreply.github.com> Date: Wed, 1 Oct 2025 09:45:05 -0400 Subject: [PATCH] troubleshooting-indentation --- docs/docs/support/troubleshoot.mdx | 92 +++++++++++++++--------------- 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/docs/docs/support/troubleshoot.mdx b/docs/docs/support/troubleshoot.mdx index 57dcb4d3..40df4a8b 100644 --- a/docs/docs/support/troubleshoot.mdx +++ b/docs/docs/support/troubleshoot.mdx @@ -10,12 +10,12 @@ This page provides troubleshooting advice for issues you might encounter when us ## OpenSearch fails to start -Check that `OPENSEARCH_PASSWORD` is set and meets requirements. +Check that `OPENSEARCH_PASSWORD` set in [Environment variables](/configure/configuration) meets requirements. The password must contain at least 8 characters, and must contain at least one uppercase letter, one lowercase letter, one digit, and one special character that is strong. ## Langflow connection issues -Verify the `LANGFLOW_SUPERUSER` credentials are correct. +Verify the `LANGFLOW_SUPERUSER` credentials set in [Environment variables](/configure/configuration) are correct. ## Memory errors @@ -48,54 +48,54 @@ To reset your local containers and pull new images, do the following: 1. Stop your containers and completely remove them. - - - - ```bash - # Stop all running containers - docker stop $(docker ps -q) + + - # Remove all containers (including stopped ones) - docker rm --force $(docker ps -aq) + ```bash + # Stop all running containers + docker stop $(docker ps -q) + + # Remove all containers (including stopped ones) + docker rm --force $(docker ps -aq) + + # Remove all images + docker rmi --force $(docker images -q) + + # Remove all volumes + docker volume prune --force + + # Remove all networks (except default) + docker network prune --force + + # Clean up any leftover data + docker system prune --all --force --volumes + ``` - # Remove all images - docker rmi --force $(docker images -q) + + - # Remove all volumes - docker volume prune --force + ```bash + # Stop all running containers + podman stop --all + + # Remove all containers (including stopped ones) + podman rm --all --force + + # Remove all images + podman rmi --all --force + + # Remove all volumes + podman volume prune --force + + # Remove all networks (except default) + podman network prune --force + + # Clean up any leftover data + podman system prune --all --force --volumes + ``` - # Remove all networks (except default) - docker network prune --force - - # Clean up any leftover data - docker system prune --all --force --volumes - ``` - - - - - ```bash - # Stop all running containers - podman stop --all - - # Remove all containers (including stopped ones) - podman rm --all --force - - # Remove all images - podman rmi --all --force - - # Remove all volumes - podman volume prune --force - - # Remove all networks (except default) - podman network prune --force - - # Clean up any leftover data - podman system prune --all --force --volumes - ``` - - - + + 2. Restart OpenRAG and upgrade to get the latest images for your containers. ```bash