ホーム > フラッグblog > VPSを借りてまずやることのまとめ(CentOS)
Date 2013/02/07   

VPSを借りてまずやることのまとめ(CentOS)

忘備録です。

 

ユーザーの作成
[root@v3503 ~]# useradd admin
[root@v3503 ~]# passwd admin
Changing password for user admin.
 
 
wheelユーザーに追加
[root@v3503 ~]# usermod -G wheel admin 
 
ユーザーになり、.sshフォルダ作成
 
[root@v3503 ~]# su - admin
[admin@v3503 ~]$ mkdir .ssh
 
権限 700に。
[admin@v3503 ~]$ chmod -R 700 .ssh/
[admin@v3503 ~]$ ls -la
 
.sshディレクトリに移ってauthorized_keys作成
[admin@v3503 ~]$ cd .ssh/
[admin@v3503 ~]$ vim authorized_keys
 
権限700に。
[admin@v3503 ~]$ chmod 700 authorized_keys 
 
 
 
rootに戻る。
[admin@v3503 ~]$ exit
 
sshd_configを編集
[root@v3503 ~]# cp /etc/ssh/sshd_config /etc/ssh/sshd_config.org
[root@v3503 ~]# vim /etc/ssh/sshd_config
 
# rootでのログインを不可に
#PermitRootLogin yes
PermitRootLogin no 
# 公開鍵でのログインのみに
#PasswordAuthentication yes
PasswordAuthentication no 
※CentOS 6.7以上の場合-------------------------
DenyUsers toor administrator administrateur admin adm test guest info mysql user oracle
に該当のuserが入っていないかチェック。入っていると以下の様なエラーになる
error: Could not get shadow information for NOUSER
-------------------------

sshd 再起動

[root@v3503 ~]# /etc/init.d/sshd restart
Stopping sshd:                                             [  OK  ]
Starting sshd:                                             [  OK  ]
 
 
 
rootでログイン出来ず、adminの鍵認証でのみ、ログインできることを確認。

 
 

この記事をシェアする

TOP

Flagsystem