gpt4 book ai didi

ubuntu - AWS EC2 IP 地址

转载 作者:行者123 更新时间:2023-12-04 19:03:28 24 4
gpt4 key购买 nike

我设法登录到 ubuntu 并进行了一些安装和 ftp 一些图像文件(只是为了测试网络是否正常工作)。如何从浏览器使用公共(public) IP 或弹性 IP 查看它?我还不想转移 DNS,因为我现在正在测试 Node.js。

最佳答案

在 EC2 上启动 ubuntu 实例不会自动使其成为服务器。您需要实际运行一个网络服务器才能在您的浏览器上查看来自该计算机的文件。

对于静态文件,您可以使用简单的 Web 服务器,如 python's SimpleHTTPServerwebfsd .

如果您打算使用 node.js,您可能更喜欢编写一个小的 Hello World在 node.js 中:

// Load the http module to create an http server.
var http = require('http');

// Configure our HTTP server to respond with Hello World to all requests.
var server = http.createServer(function (request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.end("Hello World\n");
});

// Listen on port 8000, IP defaults to 127.0.0.1
server.listen(8000);

// Put a friendly message on the terminal
console.log("Server running at http://127.0.0.1:8000/");

关于ubuntu - AWS EC2 IP 地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21948145/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com