web-dev-qa-db-ja.com

クラウドインスタンスにルートとしてログオンするにはどうすればよいですか?

SSH経由でユーザー 'ubuntu'としてクラウドインスタンスに正常にログインできますが、ユーザー 'root'としてログインできません。ルートアクセスを許可するためにssh構成を変更することに関係するいくつかの投稿がありますが、私からは何も機能していません。たとえば、/ etc/ssh/sshd_configファイルに通常の変更を加えました。つまり、

#Authentication
PermitRootLogin yes

これは効果がありませんでした。

ここで、「root」としてログインしようとすると表示されるメッセージは次のとおりです。

ユーザー「root」ではなく、ユーザー「ubuntu」としてログインしてください。

「ログインしてください」を取得すると、「/ usr/lib/python3/dist-packages/cloudinit/config/cc_ssh.py」ファイル(すべての場所)で次の行が見つかりました。

DISABLE_ROOT_OPTS = (
"no-port-forwarding,no-agent-forwarding,"
"no-X11-forwarding,command=\"echo \'Please login as the user \\\"$USER\\\""
" rather than the user \\\"root\\\".\';echo;sleep 10\"")

これはあまりできません。このPythonスクリプトは、インスタンスが最初に作成されたときに実行され、「root」としてログインするのをブロックしている追加のSSH設定を担当していると推測しています。

問題のあるssh構成ディレクティブは「no-X11-forwarding」であり、他の2つはそうです。彼らは問題のあるメッセージに関連しているように見えるので、私はこの結論に達しました。

commandディレクティブは、関連するディレクティブに違反したときにこのメッセージを表示するようにsshデーモンに指示していると推測しています。私は正しい軌道に乗っていますか?

これに追加すべきことの1つは、rootユーザーとしてログインすることに対する議論を認識していることです。ただし、これはプライベートインスタンスであり、私が唯一のユーザーになります。複雑さを避けるために、展開スクリプトをルートとして実行する必要があるため、「ルート」としてsshアクセスが必要です。

更新:下記のpythonスクリプトはUbuntu CloudInit パッケージの一部です。

さらなる更新:ここに/etc/pam.d/sshdファイルの内容があります...

# PAM configuration for the Secure Shell service

# Standard Un*x authentication.
@include common-auth

# Disallow non-root logins when /etc/nologin exists.
account    required     pam_nologin.so

# Uncomment and edit /etc/security/access.conf if you need to set complex
# access limits that are hard to express in sshd_config.
# account  required     pam_access.so

# Standard Un*x authorization.
@include common-account

# SELinux needs to be the first session rule.  This ensures that any
# lingering context has been cleared.  Without this it is possible that a
# module could execute code in the wrong domain.
session [success=ok ignore=ignore module_unknown=ignore default=bad]        pam_selinux.so close

# Set the loginuid process attribute.
session    required     pam_loginuid.so

# Create a new session keyring.
session    optional     pam_keyinit.so force revoke

# Standard Un*x session setup and teardown.
@include common-session

# Print the message of the day upon successful login.
# This includes a dynamically generated part from /run/motd.dynamic
# and a static (admin-editable) part from /etc/motd.
session    optional     pam_motd.so  motd=/run/motd.dynamic
session    optional     pam_motd.so noupdate

# Print the status of the user's mailbox upon successful login.
session    optional     pam_mail.so standard noenv # [1]

# Set up user limits from /etc/security/limits.conf.
session    required     pam_limits.so

# Read environment variables from /etc/environment and
# /etc/security/pam_env.conf.
session    required     pam_env.so # [1]
# In Debian 4.0 (etch), locale-related environment variables were moved to
# /etc/default/locale, so read that as well.
session    required     pam_env.so user_readenv=1 envfile=/etc/default/locale

# SELinux needs to intervene at login time to ensure that the process starts
# in the proper default security context.  Only sessions which are intended
# to run in the user's context should be run after this.
session [success=ok ignore=ignore module_unknown=ignore default=bad]        pam_selinux.so open

# Standard Un*x password updating.
@include common-password

...および/ etc/ssh/sshd_configファイルの内容...

# Package generated configuration file
# See the sshd_config(5) manpage for details

# What ports, IPs and protocols we listen for
Port 22
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#ListenAddress 0.0.0.0
Protocol 2
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_Host_rsa_key
HostKey /etc/ssh/ssh_Host_dsa_key
HostKey /etc/ssh/ssh_Host_ecdsa_key
HostKey /etc/ssh/ssh_Host_ed25519_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes

# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 1024

# Logging
SyslogFacility AUTH
LogLevel INFO

# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes

RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile %h/.ssh/authorized_keys

# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need Host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes

# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no

# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication yes

# Change to no to disable tunnelled clear text passwords
PasswordAuthentication yes

# Kerberos options
#KerberosAuthentication no
#KerberosGetAFSToken no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes

# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes

X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
#UseLogin no

#MaxStartups 10:30:60
#Banner /etc/issue.net

# Allow client to pass locale environment variables
AcceptEnv LANG LC_*

Subsystem sftp /usr/lib/openssh/sftp-server

# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication.  Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
UsePAM yes

...要求どおり。

1
James Smith

サーバーへのリモートrootログインをブロックすることを強くお勧めします(セキュリティ上の理由)。

推奨される方法は、通常のユーザーとしてログインし、Sudoアクセスを取得するためにrootを使用することです。

すべてのコマンドに完全なSudoアクセスを提供する究極のrootコマンドは次のとおりです。

Sudo bash

rootとして実行される特定のコマンドには、次を使用できます。

Sudo specific-command

rootとして実行されるコマンドの例:

Sudo ls -lsa /root

注:Amazonポリシーを変更してrootログインを許可する場合は、 Amazon-ec2-root-login SO Q&A の回答を使用します

ルートログインを設定するには、次を参照してください。

Sudo -s (to become root)
vi /root/.ssh/authorized_keys

ssh-rsaという単語に到達するまで、ファイルの先頭にある行を削除します。

vi /etc/ssh/sshd_config

変数PermitRootLoginPermitRootLogin without-passwordに設定します(引用符なし)

Sudo /etc/init.d/sshd restart
2
Yaron

/root/.ssh/authorized_keysファイルをご覧ください。ほとんどの場合、次のようなものが見つかります。

root@instance-00:~# cat /root/.ssh/authorized_keys 
no-port-forwarding,no-agent-forwarding,no-X11-forwarding,command="echo 'Please login as the user \"ubuntu\" rather than the user \"root\".';echo;sleep 10" ssh-rsa AAAA...= user@Host

(これは別のクラウドプロバイダーから取得されましたが、構成はAmazonのものと同じようです)。

ssh-rsaの前のすべてを削除するだけで、rootとしてリモートでログインできるはずです(もちろん、これがベストプラクティスではないことについて他の人が既に言っていることはすべて適用されます!)

本当に怠けている場合は、ubuntuユーザーのファイルを使用してauthorized_keysファイルを上書きできます。

root@instance-00:~# cp /home/ubuntu/.ssh/authorized_keys /root/.ssh/authorized_keys

そして、その接頭辞がどのようにそこにたどり着いたかに興味がある場合に備えて、すでに見つけた同じPythonコード(/usr/lib/python3/dist-packages/cloudinit/config/cc_ssh.py)がapply_credentialsに答えを持っています。許可されたキーのプレフィックスの設定方法に注意してください。

if disable_root:
    if not user:
        user = "NONE"
    key_prefix = disable_root_opts.replace('$USER', user)
else:
    key_prefix = ''
2
Bogd