Conteúdo do Curso
Introdução à Computação em Nuvem
Introdução à Computação em Nuvem
Servidor Web EC2
Usually, EC2 instances are used to host servers. These servers can perform various functions; it could be a web application server, an online gaming server, or a server with computational power that you can use for your tasks.
Simply put, you rent a computer located remotely, which is consistently maintained. This means you don't have to worry about your server and can focus on other things.
The point I'm getting at is that in this chapter, we'll see how to set up a web server on your instance and host our portfolio
HTML page.
Normalmente, instâncias EC2 são usadas para hospedar servidores. Esses servidores podem executar várias funções; pode ser um servidor de aplicação web, um servidor de jogos online ou um servidor com poder computacional que você pode usar para suas tarefas.
Simplificando, você aluga um computador localizado remotamente, que é mantido consistentemente. Isso significa que você não precisa se preocupar com seu servidor e pode se concentrar em outras coisas.
O ponto que quero chegar é que neste capítulo, veremos como configurar um servidor web na sua instância e hospedar nossa página HTML portfolio
.
To install the httpd
server on your instance, use the following command:
To check if everything is installed correctly, use the following command:
Next, we need to ensure that httpd
will automatically start after the instance is rebooted.
To do this, we need to enable httpd
using the following command:
And we will get the response with httpd
file system and server location:
Great, you have successfully installed the Apache httpd Server on your instance. Now let's move on to hosting HTML pages on the web server.
Ótimo, você instalou com sucesso o Servidor Apache httpd na sua instância. Agora vamos prosseguir para hospedar páginas HTML no servidor web.
/path/to/your-key.pem
— the path to your private key;/local/path/to/your-file.html
— the path to the HTML file you want to transfer;ec2-user
— the standard username for Amazon Linux AMI;your-ec2-public-ip
— the public IP address of your EC2 instance.
Let's use this command to transfer our portfolio
HTML page.
Now let's switch to our instance console and check if the file has been transferred using the ls
command:
As you can see, the file has been successfully transferred to the directory we specified.
Colocando o Arquivo no Diretório do Servidor Web
Por padrão, o Servidor Apache HTTP na maioria das distribuições Linux usa o diretório /var/www/html
para armazenar páginas web. Você deve mover seu arquivo HTML para este diretório usando o comando mv
:
Now our file is in the desired folder. All we need to do now is rename the file and start our server.
Iniciar o Servidor
Para renomear o arquivo, também podemos usar o comando mv
especificando os nomes antigos e novos dos arquivos. Vamos navegar até o diretório onde nosso arquivo está localizado e usar o comando necessário:
You can also check the contents of the file using the cat
command.
Now that our HTML file is in the desired directory, all we need to do is start the server.
This is done with the following command:
As you can see, the server is now active and ready to use.
To view our HTML page, you need to navigate to the public IPv4 address of your instance.
This is the website we've hosted:
Thus, we've installed a web server on our instance and hosted our HTML portfolio page on our server.
1. What software do you install on an EC2 instance to set up a web server?
2. How can you transfer an HTML file from your local computer to the EC2 instance?
3. Which directory is typically used by Apache HTTP Server to store web pages on most Linux distributions?
Obrigado pelo seu feedback!