2016-10-01 133 views
0

我有一个从市场上购买的Wowza实例,大约4小时前我能够连接它并且正在做一些操作。但是现在当我尝试连接它时,Permission denied(publickey)错误。我使用chmod命令给.77上的权限。这是我想到的真正原因。Ec2市场Linux实例权限被拒绝(publickey)

this solution当我试图将此实例的根卷附加到同一类型的其他实例时,它给出了相同的错误,但是当voulme被分离时,它正在成功连接。市场实例的数量只能附加到相似类型的实例。

现在如何更改该.ssh目录的权限?你能帮我解决吗?

这里是日志的时候我试图用实例连接:从AWS市场推出

OpenSSH_6.6.1, OpenSSL 1.0.1f 6 Jan 2014 
debug1: Reading configuration data /etc/ssh/ssh_config 
debug1: /etc/ssh/ssh_config line 19: Applying options for * 
debug1: Connecting to 54.69.133.11 [54.69.133.11] port 22. 
debug1: Connection established. 
debug1: permanently_set_uid: 0/0 
debug1: identity file Desktop/Shivam/mypemfile.pem type -1 
debug1: identity file Desktop/Shivam/mypemfile.pem-cert type -1 
debug1: Enabling compatibility mode for protocol 2.0 
debug1: Local version string SSH-2.0-OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.8 
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.6.1 
debug1: match: OpenSSH_6.6.1 pat OpenSSH_6.6.1* compat 0x04000000 
debug1: SSH2_MSG_KEXINIT sent 
debug1: SSH2_MSG_KEXINIT received 
debug1: kex: server->client aes128-ctr [email protected] none 
debug1: kex: client->server aes128-ctr [email protected] none 
debug1: sending SSH2_MSG_KEX_ECDH_INIT 
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY 
debug1: Server host key: ECDSA 6a:48:f5:14:13:9a:a1:79:e8:44:bb:0d:6b:8d:b7:59 
The authenticity of host '54.69.133.11 (54.69.133.11)' can't be established. 
ECDSA key fingerprint is 6a:48:f5:14:13:9a:a1:79:e8:44:bb:0d:6b:8d:b7:59. 
Are you sure you want to continue connecting (yes/no)? yes 
Warning: Permanently added '54.69.133.11' (ECDSA) to the list of known hosts. 
debug1: ssh_ecdsa_verify: signature correct 
debug1: SSH2_MSG_NEWKEYS sent 
debug1: expecting SSH2_MSG_NEWKEYS 
debug1: SSH2_MSG_NEWKEYS received 
debug1: SSH2_MSG_SERVICE_REQUEST sent 
debug1: SSH2_MSG_SERVICE_ACCEPT received 
debug1: Authentications that can continue: publickey 
debug1: Next authentication method: publickey 
debug1: Trying private key: Desktop/Shivam/mypemfile.pem 
debug1: key_parse_private2: missing begin marker 
debug1: read PEM private key done: type RSA 
debug1: Authentications that can continue: publickey 
debug1: No more authentication methods to try. 
Permission denied (publickey). 

回答

1

产品有非市场的情况下,不必主要实施许可限制。您遇到了其中一个限制。

这里是关于AWS论坛,可能是有用的,尤其是最后一篇文章的主题相关的thread

如果卷的AWS市场产品代码:

  • 的卷只能附加到已停止的实例。
  • 您必须订阅卷上的AWS Marketplace代码。
  • 实例的配置(实例类型,操作系统)必须支持特定的AWS Marketplace代码。例如,您的 无法从Windows实例获取卷并将其附加到Linux实例的 实例。
  • AWS Marketplace产品代码从卷复制到实例。
+0

谢谢,但我正在寻找解决方案。我已经阅读了这篇文章以及其他许多类似的帖子。当我尝试连接到其他实例时出现问题,我更新了我的问题以获得更多的说明。 – Shivam

0

我没有检查,但你可以试试这个技巧。

您可以指定用户数据以在启动期间配置实例或运行配置脚本。 http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html#user-data-shell-scripts

当您从市场广场创建一个新的实例

  1. 选择AMI
  2. 选择实例类型
  3. 配置实例 - >高级详细信息 - >使用的数据。

    在这里放置你的bash脚本来更改权限。

  4. 添加存储器

    更改根设备或添加从EBS的快照一个新的。

  5. 标记实例
  6. 配置安全组
  7. 审查和@jbird启动
相关问题