CentOS7でSSHをインストールする方法

2018年12月30日

サーバー側
1.インストール
# yum list installed | grep ssh
# yum -y install openssh-server

2.sshd_configの設定
# vim /etc/ssh/sshd_config
設定内容
Port:ポート番号
PermitRootLogin:ログインを許可(yes/no)
PasswordAuthentication:パスワード認証を許可(yes/no)

3.サービスの確認
# systemctl start sshd.service
# systemctl status sshd.service

4.sshを追加
# firewall-cmd –permanent –add-service=ssh

5.ユーザーを作成
# useradd yamadauser
# passwd yamadauser

クライアント側
# yum install openssh-clients
SSH接続
# ssh yamadauser@xxx.xxx.xxx.xxx

Linux

Posted by arkgame