GreatHost Documentation
  • GreatHost documentation
  • How to create an account?
  • Locations
  • GameServer
    • Introduction
    • Resource limit
    • Backups
  • VPS
    • Introduction
    • Conexión SSH
    • Open ports
    • Pause
    • Reset
    • Virtualization
    • Delete
  • Soporte
    • Discord support
    • Website support
  • Minecraft
    • Dashboard
Con tecnología de GitBook
En esta página
  1. VPS

Conexión SSH

Linux server products do not include a graphical management interface by default, so connection and management is done through an SSH client

AnteriorIntroductionSiguienteOpen ports

Última actualización hace 11 meses

IP address and access

The following explains the connection using the Putty SSH client. In the configuration window, the server's IP address and SSH port 22 are entered as the host name. You can then start establishing the connection using the Open button.

This opens the SSH console and prompts for a username and password. The username is "root" and the default password is "great123"

Administration via SSH

For optimal use of the SSH client, it is essential to know the basic commands. Below you will find an overview with all the relevant commands and their meaning:

Administración de cuentas

Command
Description
Sintaxis

useradd

Crear un nuevo usuario

useradd usuario [opciones] [opciones]

usermod

Editar usuario existente

usermod [opciones] [opciones]

passwd

Cambiar la contraseña de un usuario existente

passwd [opciones]

Gestión del sistema

Command
Description
Sintaxis

top

Descripción general de la carga de trabajo, los procesos y otra información

top

df

Mostrando el uso de tanques de almacenamiento

df -h

du

Visualización del consumo del tanque de almacenamiento.

du -sh *

free

Uso de memoria del sistema. Dividido en RAM y espacio SWAP.

free -h

kill

Finaliza el proceso con el ID de proceso transferido (PID)

kill [ID]

killall

Termina todos los procesos con el nombre de pila

killall [name]

mv

Mover archivos o directorio a una ubicación diferente

mv sourcepath newPath