How to install Minio on OpenSUSE Leap 42.3

To install Minio on OpenSUSE Leap 42.3

Minio is an open-source cloud storage server released under Apache License v2, compatible with Amazon S3. It is used for the purpose of storing unstructured data like photos, videos, virtual machine images, containers, and log files as objects. The size of an object can range from a few KBs to a maximum of 5TB. In distributed mode, Minio provides a single object storage server that pools. It is really simple to install Minio on OpenSUSE Leap 42.3, and this article covers the ground on the same process.

Installing Minio

It is really essential to download the installation package from the official link, so run the wget command following by the link to download the installation package.

linuxhelp:~ # wget https://dl.minio.io/server/minio/release/linux-amd64/minio
--2017-12-12 13:40:37--  https://dl.minio.io/server/minio/release/linux-amd64/minio
Resolving dl.minio.io (dl.minio.io)... 162.243.132.171
Connecting to dl.minio.io (dl.minio.io)|162.243.132.171|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 21919008 (21M) [application/octet-stream]
Saving to: ‘ minio’ 

100%[======================================> ] 21,919,008  50.8KB/s   in 6m 3s  

2017-12-12 13:46:42 (58.9 KB/s) - ‘ minio’  

saved [21919008/21919008]


Once it is downloaded, you need to give executable permission as follows.

linuxhelp:~ # chmod +x minio


And then, you need to run the following command which displays the information such as browser IP, AccessKey, and SecretKey. Copy and keep these three components.

linuxhelp:~ # ./minio server /mnt/minio
Created minio configuration file successfully at /root/.minio
Endpoint:  http://192.168.7.216:9000  http://127.0.0.1:9000
AccessKey: 171HR0L66NGTB3LIIE5J 
SecretKey: KuH20FdeS0ln1xShlI6d+ae6YOGJCiDI2P8RAZbH 

Browser Access:
   http://192.168.7.216:9000  http://127.0.0.1:9000

Command-line Access: https://docs.minio.io/docs/minio-client-quickstart-guide
   $ mc config host add myminio http://192.168.7.216:9000 171HR0L66NGTB3LIIE5J KuH20FdeS0ln1xShlI6d+ae6YOGJCiDI2P8RAZbH

Object API (Amazon S3 compatible):
   Go:         https://docs.minio.io/docs/golang-client-quickstart-guide
   Java:       https://docs.minio.io/docs/java-client-quickstart-guide
   Python:     https://docs.minio.io/docs/python-client-quickstart-guide
   JavaScript: https://docs.minio.io/docs/javascript-client-quickstart-guide
   .NET:       https://docs.minio.io/docs/dotnet-client-quickstart-guide

Drive Capacity: 11 GiB Free, 16 GiB Total

^CExiting on signal interrupt
www:~ # ./minio server /mnt/minio
Endpoint:  http://192.168.7.216:9000  http://127.0.0.1:9000
AccessKey: 171HR0L66NGTB3LIIE5J 
SecretKey: KuH20FdeS0ln1xShlI6d+ae6YOGJCiDI2P8RAZbH 

Browser Access:
   http://192.168.7.216:9000  http://127.0.0.1:9000

Command-line Access: https://docs.minio.io/docs/minio-client-quickstart-guide
   $ mc config host add myminio http://192.168.7.216:9000 171HR0L66NGTB3LIIE5J KuH20FdeS0ln1xShlI6d+ae6YOGJCiDI2P8RAZbH

Object API (Amazon S3 compatible):
   Go:         https://docs.minio.io/docs/golang-client-quickstart-guide
   Java:       https://docs.minio.io/docs/java-client-quickstart-guide
   Python:     https://docs.minio.io/docs/python-client-quickstart-guide
   JavaScript: https://docs.minio.io/docs/javascript-client-quickstart-guide
   .NET:       https://docs.minio.io/docs/dotnet-client-quickstart-guide

Drive Capacity: 11 GiB Free, 16 GiB Total


Now, switch over to your browser and type http://< ip-address> :9000 in the URL search field.


You’ ll be taken to your Minio Browser. Paste the Accesskey and Secretkey on the respective fields. Then enter into the browser through the login icon.

With this, the installation of Minio Browser on OpenSUSE Leap 42.3 comes to a close.

Tag : OpenSUSE
FAQ
Q
How do I clean Sphero Mini?
A
To clean your Mini, remove the robot from the shell. Do not clean the robot with water or other liquids, as it isn't waterproof. Use a soft clean cloth to remove any dust or dirt from the robot.
Q
How do I reset Sphero Mini?
A
Resetting Sphero Mini is as simple as plugging the robot into a power source, waiting a few seconds, then unplug it.
Q
How to give the execute permission for Minio?
A
Once it is downloaded, you need to give executable permission as follows:
# chmod +x minio
Q
How to install Minio on CentOS?
A
Run the following link to download the package
# wget https://dl.minio.io/server/minio/release/linux-amd64/minio
Q
What is Minio on OpenSUSE?
A
Minio is an open-source cloud storage server released under Apache License v2, compatible with Amazon S3. It is used for the purpose of storing unstructured data like photos, videos, virtual machine images, containers, and log files as objects. The size of an object can range from a few KBs to a maximum of 5TB. In distributed mode, Minio provides a single object storage server that pools.