-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
aguia-pescadora-bravo (#16): Configuração inicial (Primeiro login, At…
…ualizar sistema operaciona, Define hostname personalizado)
- Loading branch information
Showing
2 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,4 +28,34 @@ exit | |
# inspiration and inspire without get names noted in places that software | ||
# developers look. I'm saying this in special for people who help over | ||
# Facebook discussions. Even the ones without a personal computer yet. | ||
################################################################################ | ||
################################################################################ | ||
|
||
#------------------------------------------------------------------------------# | ||
# SEÇÃO: Configuração inicial # | ||
# TL;DR: Isso é feito ao receber uma VPS do zero # | ||
#------------------------------------------------------------------------------# | ||
|
||
### Primeiro login______________________________________________________________ | ||
# Você, seja por usuario + senha, ou por Chave SSH, normlamente terá que acessar | ||
# diretamente como root. Excessões a esta regra (como VMs na AWS) geralmente | ||
# implicam em logar em um usuario não-root e executar como sudo. Mas nesta da | ||
# é por root mesmo nesse momento. | ||
ssh [email protected] | ||
|
||
### Atualizar o sistema operacional_____________________________________________ | ||
# O sistema operacional (neste caso, Ubuntu) normalmente não vai estar 100% | ||
# atualizado. Os comandos abaixo são uma boa prática pra fazer imediatamente | ||
sudo apt update -y | ||
sudo apt upgrade -y | ||
sudo apt autoremove -y | ||
|
||
### Define um hostname personalizado____________________________________________ | ||
# O hostname padrão geralmente não faz muito sentido pra você e os usuparios | ||
# da VPS. No nosso caso, era vps240016, como em root@vps240016. | ||
# Nota: o domínio 'aguia-pescadora-bravo.etica.ai' já aponta para 192.99.247.117 | ||
sudo hostnamectl set-hostname aguia-pescadora-bravo.etica.ai | ||
|
||
# Edite /etc/hosts e adicione o hostname também apontando para 127.0.0.1 | ||
sudo vi /etc/hosts | ||
## Adicione | ||
# 127.0.0.1 aguia-pescadora-bravo.etica.ai aguia-pescadora-bravo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
127.0.0.1 localhost | ||
127.0.0.1 aguia-pescadora-bravo.etica.ai aguia-pescadora-bravo | ||
192.99.247.117 vps240016.vps.ovh.ca vps240016 | ||
127.0.1.1 vps240016.vps.ovh.ca vps240016 |