How to Install Minio on Opensuse15.1
How to Install Minio on Opensuse15.1
Use the below command To check the installed version of operating system
LinuxHelp:~ # cat /etc/os-release
NAME="openSUSE Leap"
VERSION="15.1 "
ID="opensuse-leap"
ID_LIKE="suse opensuse"
VERSION_ID="15.1"
PRETTY_NAME="openSUSE Leap 15.1"
ANSI_COLOR="0;32"
CPE_NAME="cpe:/o:opensuse:leap:15.1"
BUG_REPORT_URL="https://bugs.opensuse.org"
HOME_URL="https://www.opensuse.org/"
Use this link to download the minio from the official site
LinuxHelp:~ # wget https://dl.minio.io/server/minio/release/linux-amd64/minio
--2019-11-09 03:42:36-- https://dl.minio.io/server/minio/release/linux-amd64/minio
Resolving dl.minio.io (dl.minio.io)... 178.128.69.202
Connecting to dl.minio.io (dl.minio.io)|178.128.69.202|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 43855872 (42M) [application/octet-stream]
Saving to: ‘minio’
minio 100%[==============================================>] 41.82M 231KB/s in 2m 54s
2019-11-09 03:45:31 (246 KB/s) - ‘minio’ saved [43855872/43855872]
Long listing the current directory
LinuxHelp:~ # ll
total 42840
-rw------- 1 root root 1332 Oct 22 04:54 .ICEauthority
-rw------- 1 root root 176 Oct 22 04:52 .bash_history
drwx------ 1 root root 250 Oct 20 22:25 .cache
drwxr-xr-x 1 root root 176 Oct 20 22:22 .config
drwx------ 1 root root 66 Oct 20 22:22 .gnupg
drwx------ 1 root root 10 Oct 20 22:22 .local
drwx------ 1 root root 0 Oct 20 22:22 .ssh
drwxr-xr-x 1 root root 20 Oct 20 22:34 .vim
-rw------- 1 root root 2629 Oct 22 04:52 .viminfo
drwxr-xr-x 1 root root 0 Oct 20 22:22 Desktop
drwxr-xr-x 1 root root 0 Oct 20 22:22 Documents
drwxr-xr-x 1 root root 0 Oct 20 22:22 Downloads
drwxr-xr-x 1 root root 0 Oct 20 22:22 Music
drwxr-xr-x 1 root root 0 Oct 20 22:22 Pictures
drwxr-xr-x 1 root root 0 Oct 20 22:22 Public
drwxr-xr-x 1 root root 0 Oct 20 22:22 Templates
drwxr-xr-x 1 root root 0 Oct 20 22:22 Videos
drwxr-xr-x 1 root root 0 Mar 11 2019 bin
drwxr-xr-x 1 root root 36 Oct 21 03:26 inst-sys
-rw-r--r-- 1 root root 43855872 Oct 12 07:10 minio
Give execute permission for the minio
LinuxHelp:~ # chmod +x minio
Use the below command to start the minio server
LinuxHelp:~ # ./minio server /mnt/
Endpoint: http://192.168.7.231:9000 http://127.0.0.1:9000
AccessKey: OMASHWGKQQUQLQAHUEVV
SecretKey: fl2UqAtvLFfhDi26KxVw44qWWT+WNYjfW3RoS0DH
Browser Access:
http://192.168.7.231:9000 http://127.0.0.1:9000
Command-line Access: https://docs.min.io/docs/minio-client-quickstart-guide
$ mc config host add myminio http://192.168.7.231:9000 OMASHWGKQQUQLQAHUEVV fl2UqAtvLFfhDi26KxVw44qWWT+WNYjfW3RoS0DH
Object API (Amazon S3 compatible):
Go: https://docs.min.io/docs/golang-client-quickstart-guide
Java: https://docs.min.io/docs/java-client-quickstart-guide
Python: https://docs.min.io/docs/python-client-quickstart-guide
JavaScript: https://docs.min.io/docs/javascript-client-quickstart-guide
.NET: https://docs.min.io/docs/dotnet-client-quickstart-guide
Then navigate the browser to open the minio without stoping the currently running minio server
In-Browser Address bar, give Endpoint Details, which has copied from minio terminal
In-Browser, Copy and paste the Access Key and Secret Key credential from the minio terminal
Then click on login option to open a minio storage location in the browser, where you can store unstructured Databases
with this, Method to Install Minio on opensuse15.1 comes to end
Comments ( 0 )
No comments available