SSH (Secure Shell) adalah sebuah protokol jaringan kriptografi untuk komunikasi data yang aman dalam melakukan remote terhadap sistem, seperti login ke sistem server, router atau perangkat jaringan lainnya.
pada dasarnya ubuntu tidak akan memberi akses root secara default untuk bisa diakses melalui protokol ssh walaupun permitrootlogin sudah di assign “yes”, namun ada cara lain supaya user root dapat langsung login melalui ssh.
Sebelumnya install dulu SSH Servernya
1 |
apt-get install ssh |
jalankan perintah sudo -i untuk melakukan login spesific ke user sudoer
1 2 |
ubuntu@ubuntu:~$ sudo -i [sudo] password for ubuntu: <masukan_password> |
jalankan perintah sudo passwd untuk mengupdate password *password yang dulu juga gpp
1 2 3 4 |
root@ubuntu:~# sudo passwd Enter new UNIX password: <masukan_password> Retype new UNIX password: <masukan_password_sama> passwd: password updated successfully |
kemudian ubah permitrootlogin pada /etc/ssh/sshd_config
1 |
root@ubuntu:~# nano /etc/ssh/sshd_config |
ubah pada bagian Autentication -> permitrootlogin menjadi yes
1 2 3 4 |
# Authentication: LoginGraceTime 120 PermitRootLogin yes StrictModes yes |
setelah itu restart service sshnya
1 2 3 |
root@ubuntu:~# service ssh restart ssh stop/waiting ssh start/running, process 1295 |
kemudian setalah itu reboot ubuntu
#Testing login root di ssh
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
root@backbox:/home/alanprastyo/DevOps# ssh 192.168.56.101 root@192.168.56.101's password: Welcome to Ubuntu 14.04.2 LTS (GNU/Linux 3.16.0-30-generic x86_64) * Documentation: https://help.ubuntu.com/ System information as of Sun Aug 28 22:38:42 WIB 2016 System load: 0.31 Memory usage: 7% Processes: 79 Usage of /: 11.2% of 16.85GB Swap usage: 0% Users logged in: 0 Graph this data and manage this system at: https://landscape.canonical.com/ The programs included with the Ubuntu system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. root@ubuntu:~# |
Berhasil Brooo…..
System Engineer
Komentar