Physical Machine Related Operations
View Physical Machine List Information
Query Physical Machine
# list baremetal records
climc host-list --baremetal true
# list physical machines that have installed system
climc host-list --baremetal true --occupied
# list physical machines without installed system
climc host-list --baremetal true --empty
# Query physical machine details, including hardware information, data center information
climc host-show <host_id>
Get Physical Machine Login Information
climc host-logininfo <host_id>
Remote Terminal
Connect to physical machine through remote terminal. This function supports using SOL (Serial over LAN) and ssh to remotely connect to physical machine. SOL means remote connection through serial port. After connection, you need to use the username and password in the initial account column to log in.
tip
- If the user has enabled MFA, opening the remote terminal requires MFA verification first.
Frontend Interface Operations
- In the left navigation bar, select "Host/Basic Resources/Physical Machine" menu item to enter the physical machine page.
- Click the "Remote Terminal" button in the physical machine's right operation column, select the dropdown menu "SOL Remote Terminal" menu item to remotely connect to the physical machine through SOL.
- Click the "Remote Terminal" button in the physical machine's right operation column, select the dropdown menu "SSH IP Address" menu item to establish a web SSH connection with the physical machine.
- If port 22 on the physical machine is occupied by other applications and the ssh service port is another port, you can select the dropdown menu "SSH IP Address: Custom Port" menu item, set the port number in the popup dialog box, and click the "OK" button to establish a web SSH connection with the physical machine.
- Click the "Remote Terminal" button in the physical machine's right operation column, select the dropdown menu "Java Console" menu item to download and open the jnlp file to connect to the physical machine.
Enable/Disable
Enable or disable physical machines. Enabled physical machines are used to create bare metal servers.
Enable
# Enable physical machine
$ climc host-enable --baremetal true <id>
Disable
This function is used to disable physical machines in "enabled" status. Disabled physical machines cannot create bare metal servers.
# Disable physical machine
climc host-disable --baremetal true <id>