跳至主要内容

EC2 实例启用密码登录

解决方法

1.    从 SSH 客户端,登录到您的 EC2 实例。
使用以下用户名之一:
  • 对于 Amazon Linux,用户名为 ec2-user
  • 对于 RHEL 5,用户名为 rootec2-user
  • 对于 Ubuntu,用户名为 ubuntu
  • 对于 SUSE Linux,用户名为 rootec2-user
如果 ec2-userroot 无法使用,请与您的 AMI 提供商核实。
2.    为用户设置密码。以下示例使用 ec2-user 作为用户:

$ sudo passwd ec2-user
Changing password for user ec2-user.
New password:
Retype new password:
例如,成功的响应类似于以下示例:

passwd: all authentication tokens updated successfully.
3.    更新 /etc/ssh/sshd_config 文件中的 PasswordAuthentication 参数:

PasswordAuthentication yes
4.    重新启动 SSH 服务。
对于 Amazon Linux、RHEL 5 和 SUSE Linux,请使用以下命令:

sudo service sshd restart
对于 Ubuntu,请使用以下命令:

sudo service ssh restart
5.    退出 SSH 客户端,然后登录以测试密码身份验证。

评论

此博客中的热门博文

ncurses与readline结合

  #define _XOPEN_SOURCE 700       /* for wcswidth and 700 is for mbsnrtowcs */ #include<wchar.h> #include<ncurses.h>       /* ncurses.h includes stdio.h */ #include<stdlib.h> #include<string.h> #include<readline/readline.h> #include<locale.h>     int mygetstr( char *str, int y, int x){    WINDOW *win;    int size, col;    int ok = 0;    int width;    wchar_t wstr[80];    char *p;        getmaxyx(stdscr, size, col);        void getaline( char *s){      str = s;      rl_callback_handler_remove();      ok = 1;    }        rl_callback_handler_install( "" , getaline);    win = newwin(1, col-x, y, x);    while (1){      rl_callback_read_char(); ...

简单的整数最小乘积的解法

给定 n 个整数,每次可以从剩下的整数中取走两个整数并计算这两个整数的积。 若该操作进行 m 次,求每次计算的积之和的最小值。 Input / 输入格式 有多组测试数据。第一行输入一个整数 T(约 30)代表测试数据组数,对于每组数据: 第一行输入两个整数 n 和 m(1≤n≤10​5​​, 0≤m≤​2​​n​​),它们的含义如题中所述。 第二行输入 n 个整数 a​1​​,a​2​​,⋯,a​n​​(0≤a​i​​≤10​4​​)表示给定的整数。 Output / 输出格式 每组数据输出一行一个整数,表示积之和的最小值。 Sample Input / 样例输入 3 4 2 1 3 2 4 3 1 2 3 1 4 0 1 3 2 4 Sample Output / 样例输出 10 2 0   Hint / 样例说明 对于第一组样例数据,答案是 1×4+3×2=10。 对于第二组样例数据,答案是 2×1=2。 package main import (         "bufio"         "fmt"         "os"         "sort"         "strconv"         "strings" ) var ...

利用yellowdns解决dns污染问题

 很多网站的dns直接被污染成了127.0.0.1,这样一般就无法访问了,很多翻墙软件也认为是局域网,所以访问不了 这时候,使用yellowdns,将dns转发到远程。然后listen本地的53端口。再将dns服务器都改成本地 vi /etc/resolv.conf windows和路由器,也可以都更改