zoukankan      html  css  js  c++  java
  • Azure CentOS 虚拟机启用 ROOT 账户

    If you tried to access your instance using SSH as root:

    # ssh -i PrivateKey.pem  root@Floating-IP-Address Where Flaoting-IP-Address is the flaoting IP address associated with your instance. You might get this message: “Please login as the user “centos” rather than the user “root”.” Then the connection will close.
    

    Steps To Allow Root Access Through SSH

    1. Login as the user “centos”:
    # ssh -i PrivateKey.pem  centos@Floating-IP-Address
    
    1. Change to root:
    # sudo -s
    
    1. Edit the file “/root/.ssh/authorized_keys” (# vi /root/.ssh/authorized_keys) and keep it only contains the key (starts with “sh-rsa”) without the restrictions that exist at the begining of the file.
    2. Open the file “/etc/ssh/sshd_config” and uncomment the line “PermitRootLogin yes”
    3. Restart SSH daemon:
    # systemctl restart sshd
    

    Now you can SSH as root to your instance.
    Note: You need to automate the above if your servers are created/ deleted on demand and SSH public keys are inserted in servers on boot by Openstack.

  • 相关阅读:
    docker 命令
    php cli命令
    windows 中docker连接使用mysql数据库
    什么是微服务
    PHP7新特性
    Docker Machine 命令
    关于Docker目录挂载的总结(二)
    实验十一 MySQLl备份与恢复1
    实验十--- MySQL过程式数据库对象
    实验九 存储函数和触发器
  • 原文地址:https://www.cnblogs.com/argozhang/p/14878849.html
Copyright © 2011-2022 走看看