Min.io + Ubuntu 22
PHP Developer, Laravel Lover ❤️, Entrepreneur, Founder @ Bee Delivery
Search for a command to run...
PHP Developer, Laravel Lover ❤️, Entrepreneur, Founder @ Bee Delivery
No comments yet. Be the first to comment.
Coolify is an open-source, self-hostable Platform as a Service (PaaS) — a powerful alternative to Vercel, Heroku, and Netlify. It lets you deploy static sites, full-stack applications, databases, and
📌 1. Install PostgreSQL Update packages and install PostgreSQL server: sudo apt update && sudo apt upgrade -y Install PostgreSQL server sudo apt install postgresql postgresql-contrib -y Check if the service is active: sudo systemctl status postgre...
Sign up for DigitalOcean using my link and get $200 for your projects, valid for 60 days! Click here: GET $200 This tutorial is available as a video on YouTube: https://www.youtube.com/watch?v=KZh9Wodsa40 Updating the Operating System Step 1 - Update...
Cadastre-se na DigitalOcean, basta usar o meu link e ganhar $200 dólares para seus projetos, válidos por 60 dias! Clique em: QUERO OS 200tão Este tutorial esta disponível em vídeo no YouTube: https://www.youtube.com/watch?v=KZh9Wodsa40 Atualizando o ...
📌 1. Instalar PostgreSQL Atualize os pacotes e instale o servidor PostgreSQL: sudo apt update && sudo apt upgrade -y Instale o servidor PostgreSQL sudo apt install postgresql postgresql-contrib -y Verifique se o serviço está ativo: sudo systemctl ...
sudo apt update && sudo apt upgrade -y
Substitua <versao> pelo número da versão (por exemplo, RELEASE.2025-05-25T10-00-00Z):
wget https://dl.min.io/server/minio/release/linux-amd64/archive/minio_<versao>_amd64.deb
sudo dpkg -i minio_<versao>_amd64.deb
Se aparecer erro de dependências:
sudo apt --fix-broken install
which minio
minio --version
sudo useradd -r minio-user -s /sbin/nologin
sudo mkdir -p /usr/local/share/minio
sudo mkdir -p /etc/minio
sudo chown minio-user:minio-user /usr/local/share/minio /etc/minio
sudo nano /etc/default/minio
Adicione o conteúdo:
MINIO_VOLUMES="/usr/local/share/minio"
MINIO_OPTS="--console-address :9001"
MINIO_ROOT_USER=minioadmin
MINIO_ROOT_PASSWORD=minioadmin123
sudo nano /etc/systemd/system/minio.service
Adicione:
[Unit]
Description=MinIO
Documentation=https://min.io/docs/
Wants=network-online.target
After=network-online.target
[Service]
User=minio-user
Group=minio-user
EnvironmentFile=/etc/default/minio
ExecStart=/usr/bin/minio server $MINIO_OPTS $MINIO_VOLUMES
Restart=always
LimitNOFILE=65536
[Install]
WantedBy=multi-user.target
sudo systemctl daemon-reload
sudo systemctl enable minio
sudo systemctl start minio
sudo systemctl status minio
Abra o navegador e acesse:
http://<seu-ip>:9001
Use as credenciais definidas em /etc/default/minio.
sudo ufw allow 9000
sudo ufw allow 9001
sudo ufw reload
.deb não deve ser usado diretamente como binário, ele precisa ser instalado com dpkg -i./etc/default/minio e /etc/systemd/system/minio.service para ajustar diretórios e opções.