简体   繁体   English

从Amazon AWS过渡到其他托管提供商

[英]Transitioning from Amazon AWS to a different Hosting provider

This task fell on my lap and I have no experience with Amazon aws. 这项任务落在了我的腿上,我没有使用Amazon aws的经验。 We run a simple informational site along with redmine (as a subdomain) using amazon aws and want to switch to simple helix. 我们使用Amazon AWS和Redmine(作为子域)一起运行一个简单的信息站点,并希望切换到简单的螺旋结构。 I have researched how to switch providers and I haven't found any posts that show how to do this step by step. 我已经研究了如何切换提供商,但没有发现任何文章显示如何逐步执行此操作。 Is there a simple way to move from Amazon aws to another provider? 有没有简单的方法可以从Amazon AWS迁移到其他提供商? I think it would be best to create a duplicate of what we have on amazon aws on the simple helix server before totally dropping amazon aws. 我认为最好在完全放弃亚马逊aws之前,在简单的螺旋服务器上创建我们在亚马逊aws上拥有的副本。 As far as I know I only have log in details to EC2 Console, no ssh log in details or FTP for amazon aws. 据我所知,我仅具有登录EC2控制台的详细信息,没有ssh登录详细信息或Amazon AWS的FTP信息。

When an AWS instance is launched a public/private key pair is specified and installed in the running instance. 启动AWS实例后,将指定一个公钥/私钥对并将其安装在正在运行的实例中。 You can find the name of the key-pair by looking at details of the instance in the console. 您可以通过在控制台中查看实例的详细信息来找到密钥对的名称。 Check for "Key pair name". 检查“密钥对名称”。

Hopefully, you'll have the private key of that pair somewhere at hand. 希望您将在手边的某个地方拥有该对的私钥。 If it's lost I'm not sure how to recover it without tech support from Amazon. 如果丢失了,我不确定在没有亚马逊技术支持的情况下如何恢复它。

If you have the private key then ssh is simple, just type: 如果您拥有私钥,那么ssh很简单,只需键入:

ssh -i my.private.key -l ubuntu servername

or something similar and you're in. 或类似的东西,你在里面。

FTP access might require opening up a port in the firewall. FTP访问可能需要在防火墙中打开一个端口。 Look at the security group settings for the server to see what ports are open. 查看服务器的安全组设置,以查看打开了哪些端口。 Secure ftp is available if you can ssh into the machine using the same private key. 如果可以使用同一私钥将SSH SSH到计算机中,则可以使用安全ftp。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM