Skip to content

vm broker ‐ simple minio deployment

Allan Roger Reid edited this page Dec 9, 2024 · 1 revision

1. Create vm-broker instance with no TLS

image

2. Login and set linger

loginctl enable-linger ubuntu 

3. Start MinIO.

Since TLS is not used the port range needs to be either:

  • webserver usage: 80
  • regular usage: 10000..10099
  • nodeport usage: 31000..31099
wget https://dl.min.io/server/minio/release/linux-amd64/minio
chmod +x minio
sudo mv minio /usr/local/bin
minio --version
minio server /tmp/data --address :10000 --console-address :10090

4. Access console and api end points

➜  ~ curl http://myminio.minio.training:10000      
<?xml version="1.0" encoding="UTF-8"?>
<Error><Code>AccessDenied</Code><Message>Access Denied.</Message><Resource>/</Resource><RequestId>180F9045BF1DA398</RequestId><HostId>4583eb6562a9e7815e67b696a120c09f09901d3770caef92bcabadf9f989ca5c</HostId></Error>%  
image
Clone this wiki locally