From 4fc884bfa9ed0fdad1f6f39dfd93a7431824b923 Mon Sep 17 00:00:00 2001 From: Louis Date: Tue, 3 Dec 2024 09:31:57 +0700 Subject: [PATCH] chore: update the docs for the new Cortex server port --- docs/src/pages/docs/error-codes.mdx | 2 +- docs/src/pages/docs/troubleshooting.mdx | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/src/pages/docs/error-codes.mdx b/docs/src/pages/docs/error-codes.mdx index 65890c739b..7a3bde5806 100644 --- a/docs/src/pages/docs/error-codes.mdx +++ b/docs/src/pages/docs/error-codes.mdx @@ -81,7 +81,7 @@ These errors relate to the local API server's functionality. #### Error Types | Error Code | Cause | Solution | |------------|----------------------------------------|--------------------------------------------------------------| -| API-1 | Port 3928 is currently unavailable. | [Local API Server Guide](/docs/local-api#step-1-set-the-local-server) | +| API-1 | Port 39291 is currently unavailable. | [Local API Server Guide](/docs/local-api#step-1-set-the-local-server) | ### 8. Extensions and Integration Errors diff --git a/docs/src/pages/docs/troubleshooting.mdx b/docs/src/pages/docs/troubleshooting.mdx index d6725b2881..88cc39cbc3 100644 --- a/docs/src/pages/docs/troubleshooting.mdx +++ b/docs/src/pages/docs/troubleshooting.mdx @@ -368,23 +368,23 @@ When you start a chat with a model and encounter a Something's Amiss error, here 4. Confirm your V/RAM accessibility, mainly if using virtual RAM. 5. Nvidia GPU users should download [CUDA](https://developer.nvidia.com/cuda-downloads). 6. Linux users, ensure your system meets the requirements of gcc 11, g++ 11, cpp 11, or higher. Refer to this [link](#troubleshooting-nvidia-gpu) for details. -7. You might use the wrong port when you [check the app logs](#how-to-get-error-logs) and encounter the Bind address failed at 127.0.0.1:3928 error. To check the port status, try using the `netstat` command, like the following: +7. You might use the wrong port when you [check the app logs](#how-to-get-error-logs) and encounter the Bind address failed at 127.0.0.1:39291 error. To check the port status, try using the `netstat` command, like the following: ```bash - netstat -an | grep 3928 + netstat -an | grep 39291 ``` ```bash - netstat -ano | find "3928" - tasklist /fi "PID eq 3928" + netstat -ano | find "39291" + tasklist /fi "PID eq 39291" ``` ```bash - netstat -anpe | grep "3928" + netstat -anpe | grep "39291" ```