WebCal
Ctrl K

指南

Visdom

指南整合常見問題支援
定價部落格
快速開始Top-Up and BillingAccelerating Access to Academic ResourcesQuick StartIntroductionMaintenance and TroubleshootingNetwork
平台資訊JetBrain ProjectorTmpWebCal Scholars Program @2026Introduction to the Public Beta/Suqian Zone AAbout UsCopying Data Between InstancesAnalysis of Server Performance MetricsTidal Computing PowerLoad Balancing
國產晶片Using Huawei MindIEHuawei Ascend NPUMooreThread GPU
環境設定CUDA/cuDNNMinicondaPython3.XInstalling DependenciesOverviewImages
企業進階功能Flexible DeploymentElastic Deployment Release NotesBest Practices for Elastic DeploymentPerformance Metrics Monitoring
容器實例JupyterLabRemote SSH ConnectionSave the imageScaling ConfigurationMulti-machine, multi-GPU parallel processingDaemonOverviewChange the billing methodMigration Example (Same Region)Migration ExamplesRemote DesktopReset the system
如何選擇 GPUGPU SelectionPerformance Testing
資料Upload DataDownload DataPublic DataPublic Cloud Storage (Highly Recommended)Compression / DecompressionFile StorageLocal data diskOverview
最佳實務FileZillaGitGromacsHuggingFaceKataGoLinux BasicsMPIOpenCLPyCharm Remote DevelopmentR (RStudio) InstallationSSH TunnelTensorBoardRemote Development with VSCodeVisdomVulkanXShellOpen PortsWeChat MessagesPerformanceExpose multiple servicesMoney-Saving TipsComputation Precision IssuesSoftware Sources

最佳實務

Visdom

2026/07/3034808 次瀏覽

Methods for SSH Tunnels

  1. Start visdom on the instance (it listens on port 8097 by default)

  2. In the terminal on your local computer, run the command: ssh -CNgv -L 8097:127.0.0.1:8097 root@region-1.webcal.com -p 37881. Here, 8097:127.0.0.1:8097 refers to port forwarding from port 8097 on the Visdom Server to port 8097 on your local machine, while root@region-1.webcal.com and 37881 are the access address and port for the SSH command in the instance, respectively. Please substitute the appropriate values.

Note: It is normal for no logs to appear after executing the SSH command above, as long as you are not prompted to re-enter your password or the session does not terminate.

image-20221117105400658

  1. Open Visdom by visiting 127.0.0.1:8097 in your local browser.

image-20221117105431465

Custom Service Methods

Start an instance and locate the “Custom Services” entry point

image-20220401155740569

As indicated in the prompt, we simply need to start Visdom on port 6006 to access it via the “Custom Services” entry point:

Start Visdom on the instance and specify port 6006

# 如果没有安装visdom,请先执行pip install visdom安装
# visdom -port 6006
Checking for scripts.
It's Alive!
INFO:root:Application Started
You can navigate to http://container-7e5111bf0c-8a82bc6b:6006

Additionally, since the Visdom client uses the original port by default when connecting to the Visdom server, the following modification must be made when constructing the Visdom object in the client code:

vis = Visdom(server='http://localhost', port='6006', env='main')

After startup, access the custom service in your local browser

image-20220401160337985

下一篇Vulkan
WebCal文件返回指南