Yandex Cloud
Search
Contact UsGet started
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • AI for business
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
Yandex Compute Cloud
    • All guides
      • Getting VM info
      • Getting the serial port output
    • Viewing service resource operations
    • Viewing metrics in Monitoring
    • NVIDIA driver update guide
  • Yandex Container Solution
  • Access management
  • Pricing policy
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Release notes
  1. Step-by-step guides
  2. Getting VM info
  3. Getting the serial port output

Getting the serial port output

Written by
Yandex Cloud
Updated at June 9, 2025

You can get the output from a VM serial port and use it, e.g., for troubleshooting.

To access the output data, you need the compute.operator or viewer role.

Management console
CLI
API
  1. Select the folder the VM belongs to.
  2. Select Compute Cloud.
  3. Click the line with the VM in question.
  4. Go to the Serial port tab.
  5. To use the CTRL + F shortcut to search, enable Raw mode in the top-right corner.

By default, the CLI uses the folder specified when creating the profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also set a different folder for any specific command using the --folder-name or --folder-id parameter.

  1. See the description of the command for getting the serial port output:

    yc compute instance get-serial-port-output --help
    
  2. Select a VM, e.g., first-instance:

    yc compute instance list
    

    Result:

    +----------------------+-----------------+---------------+---------+----------------------+
    |          ID          |       NAME      |    ZONE ID    | STATUS  |     DESCRIPTION      |
    +----------------------+-----------------+---------------+---------+----------------------+
    | fhm0b28lgfp4******** | first-instance  | ru-central1-a | RUNNING | my first vm via CLI  |
    | fhm9gk85nj7g******** | second-instance | ru-central1-a | RUNNING | my second vm via CLI |
    +----------------------+-----------------+---------------+---------+----------------------+
    
  3. Get its serial port output. Since the serial port output is usually lengthy, we recommend writing it to a file:

    yc compute instance get-serial-port-output first-instance > output.txt
    

To get the serial port output, use the getSerialPortOutput REST API method for the Instance resource or the InstanceService/GetSerialPortOutput gRPC API call.

Was the article helpful?

Previous
Getting VM info
Next
Stopping and starting a VM
© 2025 Direct Cursus Technology L.L.C.