Actualizar 'README.md'

This commit is contained in:
2022-08-20 12:41:36 -05:00
parent 62ec331740
commit 9131167a6f

View File

@@ -209,4 +209,21 @@ sudo systemctl status mongodb
git add .
git push heroku master
```
## Instalar Mongo ubuntu 22:04
```sh
curl -LO http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1-1ubuntu2.1~18.04.20_amd64.deb
sudo dpkg -i ./libssl1.1_1.1.1-1ubuntu2.1~18.04.20_amd64.deb
```
## Habilitar ufw
```sh
sudo ufw app list #lista las app permitidas
sudo ufw allow OpenSSH # habilta comunicacion ssh
sudo ufw allo port # habilita un puerto
sudo ufw deny port # bloquea el puerto
sudo ufw enable #habilita el firewall
```