DEV Community

Cover image for Cara Instal SSH Server di Ubuntu/Debian
fixploit03
fixploit03

Posted on

Cara Instal SSH Server di Ubuntu/Debian

Instalasi:

sudo apt update
sudo apt install -y openssh-server
Enter fullscreen mode Exit fullscreen mode

Aktifkan dan jalankan service SSH:

sudo systemctl enable --now ssh
Enter fullscreen mode Exit fullscreen mode

Cek status service SSH:

sudo systemctl status ssh
Enter fullscreen mode Exit fullscreen mode

Pastikan statusnya: active (running)


Kalau ada pertanyaan, silakan tanyakan di kolom komentar :)

Top comments (0)