У нас вы можете посмотреть бесплатно How (and Why) to Disable Root Login Over SSH или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Video Time Codes (Click them to skip to that part of the video). Learn how to: 0:00 Introduction 0:10 Understand why to disable root login over SSH 1:49 How to create a new administrator account 2:50 Make changes to SSH login policy 3:58 Verify new policy Comment below solutions you want to see and problems you need fixed. Make sure to like and subscribe for more highly informative quality videos! This video is NOT sponsored. Commands used ## #-------------------------------------- ssh #-------------------------------------- ssh useraccount@ip_or_hostname Create an administrator user #-------------------------------------- adduser newaccountusername passwd newaccountusername RHEL based: usermod -aG wheel newaccountusername Debian based: usermod -aG sudo newaccountusername Edit SSH Policy #-------------------------------------- nano /etc/ssh/sshd_config Change the line 'PermitRootLogin yes' to 'PermitRootLogin no' Restart SSH Service to use new policy #-------------------------------------- sudo systemctl restart sshd