Merge pull request #4190 from janhq/chore/update-docs-for-new-cortex-server-port

chore: update the docs for the new Cortex server port
This commit is contained in:
Louis 2024-12-03 11:55:43 +07:00 committed by GitHub
commit d9313d670a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -81,7 +81,7 @@ These errors relate to the local API server's functionality.
#### Error Types #### Error Types
| Error Code | Cause | Solution | | 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 ### 8. Extensions and Integration Errors

View File

@ -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. 4. Confirm your V/RAM accessibility, mainly if using virtual RAM.
5. Nvidia GPU users should download [CUDA](https://developer.nvidia.com/cuda-downloads). 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. 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:
<Tabs items={['Mac', 'Windows', 'Linux']}> <Tabs items={['Mac', 'Windows', 'Linux']}>
<Tabs.Tab > <Tabs.Tab >
```bash ```bash
netstat -an | grep 3928 netstat -an | grep 39291
``` ```
</Tabs.Tab> </Tabs.Tab>
<Tabs.Tab > <Tabs.Tab >
```bash ```bash
netstat -ano | find "3928" netstat -ano | find "39291"
tasklist /fi "PID eq 3928" tasklist /fi "PID eq 39291"
``` ```
</Tabs.Tab> </Tabs.Tab>
<Tabs.Tab > <Tabs.Tab >
```bash ```bash
netstat -anpe | grep "3928" netstat -anpe | grep "39291"
``` ```
</Tabs.Tab> </Tabs.Tab>
</Tabs> </Tabs>