{"id":8431,"date":"2023-02-23T14:45:07","date_gmt":"2023-02-23T13:45:07","guid":{"rendered":"http:\/\/roglacup.com\/klaus62\/?p=8431"},"modified":"2023-02-25T05:53:05","modified_gmt":"2023-02-25T04:53:05","slug":"interview-with-minio-ceo-anand-babu-periasamy-espeaks","status":"publish","type":"post","link":"https:\/\/roglacup.com\/klaus62\/2023\/02\/23\/interview-with-minio-ceo-anand-babu-periasamy-espeaks\/","title":{"rendered":"Interview with MinIO CEO Anand Babu Periasamy | eSPEAKS"},"content":{"rendered":"\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\"  id=\"_ytid_22560\"  width=\"1200\" height=\"675\"  data-origwidth=\"1200\" data-origheight=\"675\" src=\"https:\/\/www.youtube.com\/embed\/Ru5mnS2msGo?enablejsapi=1&#038;autoplay=0&#038;cc_load_policy=0&#038;cc_lang_pref=&#038;iv_load_policy=1&#038;loop=0&#038;rel=1&#038;fs=1&#038;playsinline=0&#038;autohide=2&#038;theme=dark&#038;color=red&#038;controls=1&#038;disablekb=0&#038;\" class=\"__youtube_prefs__  epyt-is-override  no-lazyload\" title=\"YouTube player\"  allow=\"fullscreen; accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen data-no-lazy=\"1\" data-skipgform_ajax_framebjll=\"\"><\/iframe>\n<\/div><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p class=\"has-small-font-size\">Posted from: <a href=\"https:\/\/min.io\/docs\/minio\/linux\/index.html#:~:text=Connect%20Your%20Browser%20to%20the%20MinIO%20Server&amp;text=While%20the%20port%209000%20is,These%20default%20to%20minioadmin%20%7C%20minioadmin%20.\">https:\/\/min.io\/docs\/minio\/linux\/index.html#:~:text=Connect%20Your%20Browser%20to%20the%20MinIO%20Server&amp;text=While%20the%20port%209000%20is,These%20default%20to%20minioadmin%20%7C%20minioadmin%20.<\/a><\/p>\n\n\n\n<p class=\"has-small-font-size\"><a href=\"https:\/\/min.io\/docs\/minio\/linux\/operations\/install-deploy-manage\/deploy-minio-single-node-single-drive.html\">https:\/\/min.io\/docs\/minio\/linux\/operations\/install-deploy-manage\/deploy-minio-single-node-single-drive.html<\/a><\/p>\n\n\n\n<p>1.)<strong>Install the MinIO Server<\/strong><\/p>\n\n\n\n<p class=\"has-small-font-size\">wget https:\/\/dl.min.io\/server\/minio\/release\/linux-amd64\/archive\/minio-20230217175243.0.0.x86_64.rpm -O minio.rpm<br>sudo dnf install minio.rpm<\/p>\n\n\n\n<p class=\"has-small-font-size\">2.)<strong>systemd service <\/strong><\/p>\n\n\n\n<p class=\"has-small-font-size\"><strong>\/etc\/systemd\/system\/minio.service<\/strong><\/p>\n\n\n\n<p class=\"has-small-font-size\">[root@localhost system]# cat minio.service<\/p>\n\n\n\n<p class=\"has-small-font-size\">[Unit]<\/p>\n\n\n\n<p class=\"has-small-font-size\">Description=MinIO<\/p>\n\n\n\n<p class=\"has-small-font-size\">Documentation=https:\/\/docs.min.io<\/p>\n\n\n\n<p class=\"has-small-font-size\">Wants=network-online.target<\/p>\n\n\n\n<p class=\"has-small-font-size\">After=network-online.target<\/p>\n\n\n\n<p class=\"has-small-font-size\">AssertFileIsExecutable=\/usr\/local\/bin\/minio<\/p>\n\n\n\n<p class=\"has-small-font-size\">[Service]<\/p>\n\n\n\n<p class=\"has-small-font-size\">WorkingDirectory=\/usr\/local<\/p>\n\n\n\n<p class=\"has-small-font-size\">User=minio-user<\/p>\n\n\n\n<p class=\"has-small-font-size\">Group=minio-user<\/p>\n\n\n\n<p class=\"has-small-font-size\">ProtectProc=invisible<\/p>\n\n\n\n<p class=\"has-small-font-size\">EnvironmentFile=-\/etc\/default\/minio<\/p>\n\n\n\n<p class=\"has-small-font-size\">ExecStartPre=\/bin\/bash -c &#8220;if [ -z \\&#8221;${MINIO_VOLUMES}\\&#8221; ]; then echo \\&#8221;Variable MINIO_VOLUMES not set in \/etc\/default\/minio\\&#8221;; exit 1; fi&#8221;<\/p>\n\n\n\n<p class=\"has-small-font-size\">ExecStart=\/usr\/local\/bin\/minio server $MINIO_OPTS $MINIO_VOLUMES<\/p>\n\n\n\n<p class=\"has-small-font-size\"># Let systemd restart this service always<\/p>\n\n\n\n<p class=\"has-small-font-size\">Restart=always<\/p>\n\n\n\n<p class=\"has-small-font-size\"># Specifies the maximum file descriptor number that can be opened by this process<\/p>\n\n\n\n<p class=\"has-small-font-size\">LimitNOFILE=1048576<\/p>\n\n\n\n<p class=\"has-small-font-size\"># Specifies the maximum number of threads this process can create<\/p>\n\n\n\n<p class=\"has-small-font-size\">TasksMax=infinity<\/p>\n\n\n\n<p class=\"has-small-font-size\"># Disable timeout logic and wait until process is stopped<\/p>\n\n\n\n<p class=\"has-small-font-size\">TimeoutStopSec=infinity<\/p>\n\n\n\n<p class=\"has-small-font-size\">SendSIGKILL=no<\/p>\n\n\n\n<p class=\"has-small-font-size\">[Install]<\/p>\n\n\n\n<p class=\"has-small-font-size\">WantedBy=multi-user.target<\/p>\n\n\n\n<p class=\"has-small-font-size\"># Built for ${project.name}-${project.version} (${project.name})<\/p>\n\n\n\n<p class=\"has-small-font-size\">[root@localhost system]# [root@localhost system]# cat minio.service<\/p>\n\n\n\n<p class=\"has-small-font-size\">[Unit]<\/p>\n\n\n\n<p class=\"has-small-font-size\">Description=MinIO<\/p>\n\n\n\n<p class=\"has-small-font-size\">Documentation=https:\/\/docs.min.io<\/p>\n\n\n\n<p class=\"has-small-font-size\">Wants=network-online.target<\/p>\n\n\n\n<p class=\"has-small-font-size\">After=network-online.target<\/p>\n\n\n\n<p class=\"has-small-font-size\">AssertFileIsExecutable=\/usr\/local\/bin\/minio<\/p>\n\n\n\n<p class=\"has-small-font-size\">[Service]<\/p>\n\n\n\n<p class=\"has-small-font-size\">WorkingDirectory=\/usr\/local<\/p>\n\n\n\n<p class=\"has-small-font-size\">User=minio-user<\/p>\n\n\n\n<p class=\"has-small-font-size\">Group=minio-user<\/p>\n\n\n\n<p class=\"has-small-font-size\">ProtectProc=invisible<\/p>\n\n\n\n<p class=\"has-small-font-size\">EnvironmentFile=-\/etc\/default\/minio<\/p>\n\n\n\n<p class=\"has-small-font-size\">ExecStartPre=\/bin\/bash -c &#8220;if [ -z \\&#8221;${MINIO_VOLUMES}\\&#8221; ]; then echo \\&#8221;Variable MINIO_VOLUMES not set in \/etc\/default\/minio\\&#8221;; exit 1; fi&#8221;<\/p>\n\n\n\n<p class=\"has-small-font-size\">ExecStart=\/usr\/local\/bin\/minio server $MINIO_OPTS $MINIO_VOLUMES<\/p>\n\n\n\n<p class=\"has-small-font-size\"># Let systemd restart this service always<\/p>\n\n\n\n<p class=\"has-small-font-size\">Restart=always<\/p>\n\n\n\n<p class=\"has-small-font-size\"># Specifies the maximum file descriptor number that can be opened by this proces\/etc\/systemd\/system\/minio.service\/etc\/systemd\/system\/minio.service<\/p>\n\n\n\n<p class=\"has-small-font-size\"><strong>3.)Add user<\/strong><\/p>\n\n\n\n<p class=\"has-small-font-size\">The&nbsp;<code>minio.service<\/code>&nbsp;file runs as the&nbsp;<code>minio-user<\/code>&nbsp;User and Group by default. You can create the user and group using the&nbsp;<code>groupadd<\/code>&nbsp;and&nbsp;<code>useradd<\/code>&nbsp;commands. The following example creates the user, group, and sets permissions to access the folder paths intended for use by MinIO. These commands typically require root (<code>sudo<\/code>) permissions.<\/p>\n\n\n\n<pre id=\"codecell7\" class=\"wp-block-preformatted has-small-font-size\">groupadd -r minio-user\nuseradd -M -r -g minio-user minio-user\nchown minio-user:minio-user \/mnt\/disk1 \/mnt\/disk2 \/mnt\/disk3 \/mnt\/disk4<\/pre>\n\n\n\n<p><strong>3A.) Disk &#8211; lsblk, fdisk<\/strong> &#8230; how to add  disk<\/p>\n\n\n\n<p class=\"has-small-font-size\"><strong>[root@localhost default]# lsblk<\/strong><br>NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS<br>sda 8:0 0 20.4G 0 disk<br>\u251c\u2500sda1 8:1 0 1G 0 part \/boot<br>\u2514\u2500sda2 8:2 0 19.4G 0 part<br>\u251c\u2500rl-root 253:0 0 17.3G 0 lvm \/<br>\u2514\u2500rl-swap 253:1 0 2G 0 lvm [SWAP]<br>sdb 8:16 0 10.2G 0 disk<br>sr0 11:0 1 1024M 0 rom<\/p>\n\n\n\n<p class=\"has-small-font-size\"><strong>[root@localhost default]# fdisk -l<\/strong><br>Disk \/dev\/sda: 20.38 GiB, 21879635968 bytes, 42733664 sectors<br>Disk model: VBOX HARDDISK<br>Units: sectors of 1 * 512 = 512 bytes<br>Sector size (logical\/physical): 512 bytes \/ 512 bytes<br>I\/O size (minimum\/optimal): 512 bytes \/ 512 bytes<br>Disklabel type: dos<br>Disk identifier: 0x5988d314<\/p>\n\n\n\n<p class=\"has-small-font-size\">Device Boot Start End Sectors Size Id Type<br>\/dev\/sda1 * 2048 2099199 2097152 1G 83 Linux<br>\/dev\/sda2 2099200 42733567 40634368 19.4G 8e Linux LVM<\/p>\n\n\n\n<p class=\"has-small-font-size\">Disk \/dev\/sdb: 10.15 GiB, 10900324352 bytes, 21289696 sectors<br>Disk model: VBOX HARDDISK<br>Units: sectors of 1 * 512 = 512 bytes<br>Sector size (logical\/physical): 512 bytes \/ 512 bytes<br>I\/O size (minimum\/optimal): 512 bytes \/ 512 bytes<\/p>\n\n\n\n<p class=\"has-small-font-size\">Disk \/dev\/mapper\/rl-root: 17.34 GiB, 18614321152 bytes, 36356096 sectors<br>Units: sectors of 1 * 512 = 512 bytes<br>Sector size (logical\/physical): 512 bytes \/ 512 bytes<br>I\/O size (minimum\/optimal): 512 bytes \/ 512 bytes<\/p>\n\n\n\n<p class=\"has-small-font-size\">Disk \/dev\/mapper\/rl-swap: 2.04 GiB, 2189426688 bytes, 4276224 sectors<br>Units: sectors of 1 * 512 = 512 bytes<br>Sector size (logical\/physical): 512 bytes \/ 512 bytes<br>I\/O size (minimum\/optimal): 512 bytes \/ 512 bytes<br>[root@localhost default]#<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p class=\"has-small-font-size\"><strong>[root@localhost default]# fdisk \/dev\/sdb<\/strong><\/p>\n\n\n\n<p class=\"has-small-font-size\">Welcome to fdisk (util-linux 2.37.4).<br>Changes will remain in memory only, until you decide to write them.<br>Be careful before using the write command.<\/p>\n\n\n\n<p class=\"has-small-font-size\">Device does not contain a recognized partition table.<br>Created a new DOS disklabel with disk identifier 0x778a5a63.<\/p>\n\n\n\n<p class=\"has-small-font-size\">Command (m for help): n<br>Partition type<br>p primary (0 primary, 0 extended, 4 free)<br>e extended (container for logical partitions)<br>Select (default p):<\/p>\n\n\n\n<p class=\"has-small-font-size\">Using default response p.<br>Partition number (1-4, default 1):<br>First sector (2048-21289695, default 2048):<br>Last sector, +\/-sectors or +\/-size{K,M,G,T,P} (2048-21289695, default 21289695):<\/p>\n\n\n\n<p class=\"has-small-font-size\">Created a new partition 1 of type &#8216;Linux&#8217; and of size 10.2 GiB.<\/p>\n\n\n\n<p class=\"has-small-font-size\">Command (m for help): w<br>The partition table has been altered.<br>Calling ioctl() to re-read partition table.<br>Syncing disks.<\/p>\n\n\n\n<p class=\"has-small-font-size\">[root@localhost default]# lsblk<br>NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS<br>sda 8:0 0 20.4G 0 disk<br>\u251c\u2500sda1 8:1 0 1G 0 part \/boot<br>\u2514\u2500sda2 8:2 0 19.4G 0 part<br>\u251c\u2500rl-root 253:0 0 17.3G 0 lvm \/<br>\u2514\u2500rl-swap 253:1 0 2G 0 lvm [SWAP]<br>sdb 8:16 0 10.2G 0 disk<br>\u2514\u2500sdb1 8:17 0 10.2G 0 part<br>sr0 11:0 1 1024M 0 rom<br><strong>[root@localhost default]# mkfs.xfs \/dev\/sdb1<\/strong><br>meta-data=\/dev\/sdb1 isize=512 agcount=4, agsize=665239 blks<br>= sectsz=512 attr=2, projid32bit=1<br>= crc=1 finobt=1, sparse=1, rmapbt=0<br>= reflink=1 bigtime=1 inobtcount=1<br>data = bsize=4096 blocks=2660956, imaxpct=25<br>= sunit=0 swidth=0 blks<br>naming =version 2 bsize=4096 ascii-ci=0, ftype=1<br>log =internal log bsize=4096 blocks=2560, version=2<br>= sectsz=512 sunit=0 blks, lazy-count=1<br>realtime =none extsz=4096 blocks=0, rtextents=0<br>[root@localhost default]#<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p class=\"has-small-font-size\"><strong>mkdir \/data<\/strong><\/p>\n\n\n\n<p class=\"has-small-font-size\"><strong>mount \/dev\/sb1 \/data<\/strong><\/p>\n\n\n\n<p>o enable auto mount of the newly added disk incase of any reboot, we need to add the following configurations in the&nbsp;<strong>\/etc\/<em>fstab<\/em><\/strong>&nbsp;file.<\/p>\n\n\n\n<p>Open the&nbsp;<strong><em>\/etc\/fstab<\/em><\/strong>&nbsp;file and add the following entry in the last line of the file.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/dev\/sdc1               \/data2                 xfs     defaults        0 0<\/code><\/pre>\n\n\n\n<p>Finally the file will look like the one below. The below screenshot is a sample one. Do not worry about the remaining entries. You only need to ensure the correctness of the last line.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/amalgjose.files.wordpress.com\/2021\/09\/image-13.png\"><img decoding=\"async\" src=\"https:\/\/amalgjose.files.wordpress.com\/2021\/09\/image-13.png?w=965\" alt=\"\" class=\"wp-image-2694\"\/><\/a><\/figure>\n\n\n\n<p>Now save this file and verify the entry by doing the following commands.<\/p>\n\n\n\n<p>We will unmount the newly added disk and mount it back using the entries in the&nbsp;<strong><em>\/etc\/fstab<\/em><\/strong>&nbsp;file. If the mount is properly happening based on the entry in the&nbsp;<strong><em>fstab<\/em><\/strong>&nbsp;file, we are good.<\/p>\n\n\n\n<p>The command to unmount is&nbsp;<strong><em>umount<\/em><\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Unmount the disk\numount \/data2\n\n# Verify the unmount operation using the commands lsblk or df -h. You will see the new mountpoint missing\nlsblk\n\n# Now perform the mount using the entries in the \/etc\/fstab file\nmount -a\n\n# Now verify the mount points using lsblk or df -h command. \n# You will be able to see the newly added disk with mount point\nlsblk<\/code><\/pre>\n\n\n\n<p class=\"has-small-font-size\"><strong>4.) minio-user &amp; rights<\/strong><\/p>\n\n\n\n<p class=\"has-small-font-size\">The\u00a0<code>minio.service<\/code>\u00a0file runs as the\u00a0<code>minio-user<\/code>\u00a0User and Group by default. You can create the user and group using the\u00a0<code>groupadd<\/code>\u00a0and\u00a0<code>useradd<\/code>\u00a0commands. The following example creates the user, group, and sets permissions to access the folder paths intended for use by MinIO. These commands typically require root (<code>sudo<\/code>) permissions.<\/p>\n\n\n\n<p class=\"has-small-font-size\">groupadd -r minio-user<br>useradd -M -r -g minio-user minio-user<br>chown minio-user:minio-user \/mnt\/disk1 \/mnt\/disk2 \/mnt\/disk3 \/mnt\/disk4<\/p>\n\n\n\n<p><strong>5.) minio config<\/strong><\/p>\n\n\n\n<p>Create an environment variable file at&nbsp;<code>\/etc\/default\/minio<\/code>. For Windows hosts, specify a Windows-style path similar to&nbsp;<code>C:\\minio\\config<\/code>. The MinIO Server container can use this file as the source of all&nbsp;<a href=\"https:\/\/min.io\/docs\/minio\/linux\/reference\/minio-server\/minio-server.html#minio-server-environment-variables\">environment variables<\/a>.<\/p>\n\n\n\n<p>The following example provides a starting environment file:<\/p>\n\n\n\n<pre id=\"codecell8\" class=\"wp-block-preformatted\"><em># MINIO_ROOT_USER and MINIO_ROOT_PASSWORD sets the root account for the MinIO server.<\/em>\n<em># This user has unrestricted permissions to perform S3 and administrative API operations on any resource in the deployment.<\/em>\n<em># Omit to use the default values 'minioadmin:minioadmin'.<\/em>\n<em># MinIO recommends setting non-default values as a best practice, regardless of environment<\/em>\n\nMINIO_ROOT_USER=myminioadmin\nMINIO_ROOT_PASSWORD=minio-secret-key-change-me\n\n<em># MINIO_VOLUMES sets the storage volume or path to use for the MinIO server.<\/em>\n\nMINIO_VOLUMES=\"\/mnt\/data\"\n\n<em># MINIO_SERVER_URL sets the hostname of the local machine for use with the MinIO Server<\/em>\n<em># MinIO assumes your network control plane can correctly resolve this hostname to the local machine<\/em>\n\n<em># Uncomment the following line and replace the value with the correct hostname for the local machine.<\/em>\n\n<em>#MINIO_SERVER_URL=\"http:\/\/minio.example.net\"<\/em>\n<\/pre>\n\n\n\n<p>Include any other environment variables as required for your local deployment.<\/p>\n\n\n\n<p class=\"has-small-font-size\"><strong>6.) start minio service<\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https:\/\/min.io\/docs\/minio\/linux\/operations\/install-deploy-manage\/deploy-minio-single-node-single-drive.html#start-the-minio-service\"><\/a><\/h3>\n\n\n\n<p class=\"has-small-font-size\">Issue the following command on the local host to start the MinIO&nbsp;SNSD&nbsp;deployment as a service:<\/p>\n\n\n\n<pre id=\"codecell9\" class=\"wp-block-preformatted has-small-font-size\">sudo systemctl start minio.service\n<\/pre>\n\n\n\n<p class=\"has-small-font-size\">Use the following commands to confirm the service is online and functional:<\/p>\n\n\n\n<pre id=\"codecell10\" class=\"wp-block-preformatted has-small-font-size\">sudo systemctl status minio.service\njournalctl -f -u minio.service\n<\/pre>\n\n\n\n<p class=\"has-small-font-size\">MinIO may log an increased number of non-critical warnings while the server processes connect and synchronize. These warnings are typically transient and should resolve as the deployment comes online.<\/p>\n\n\n\n<p class=\"has-small-font-size\"><em>Changed in version RELEASE.2023-02-09T05-16-53Z:&nbsp;<\/em>MinIO starts if it detects enough drives to meet the&nbsp;<a href=\"https:\/\/min.io\/docs\/minio\/linux\/operations\/concepts\/erasure-coding.html#minio-ec-parity\">write quorum<\/a>&nbsp;for the deployment.<\/p>\n\n\n\n<p class=\"has-small-font-size\">If any drives remain offline after starting MinIO, check and cure any issues blocking their functionality before starting production workloads.<\/p>\n\n\n\n<p class=\"has-small-font-size\">The&nbsp;<code>journalctl<\/code>&nbsp;output should resemble the following:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted has-small-font-size\">Status:         1 Online, 0 Offline.\nAPI: http:\/\/192.168.2.100:9000  http:\/\/127.0.0.1:9000\nRootUser: myminioadmin\nRootPass: minio-secret-key-change-me\nConsole: http:\/\/192.168.2.100:9090 http:\/\/127.0.0.1:9090\nRootUser: myminioadmin\nRootPass: minio-secret-key-change-me\n\nCommand-line: https:\/\/min.io\/docs\/minio\/linux\/reference\/minio-mc.html\n   $ mc alias set myminio http:\/\/10.0.2.100:9000 myminioadmin minio-secret-key-change-me\n\nDocumentation: https:\/\/min.io\/docs\/minio\/linux\/index.html\n<\/pre>\n\n\n\n<p class=\"has-small-font-size\">The\u00a0<code>API<\/code>\u00a0block lists the network interfaces and port on which clients can access the MinIO S3 API. The\u00a0<code>Console<\/code>\u00a0block lists the network interfaces and port on which clients can access the MinIO Web Console.<\/p>\n\n\n\n<p><strong>7.) connect to the minio service<\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https:\/\/min.io\/docs\/minio\/linux\/operations\/install-deploy-manage\/deploy-minio-single-node-single-drive.html#connect-to-the-minio-service\"><\/a><\/h3>\n\n\n\n<p class=\"has-small-font-size\">MinIO Console<\/p>\n\n\n\n<p class=\"has-small-font-size\">You can access the MinIO Console by entering any of the hostnames or IP addresses from the MinIO server&nbsp;<code>Console<\/code>&nbsp;block in your preferred browser, such as&nbsp;<a href=\"http:\/\/localhost:9090\/\" target=\"_blank\" rel=\"noreferrer noopener\">http:\/\/localhost:9090<\/a>.<\/p>\n\n\n\n<p class=\"has-small-font-size\">Log in with the&nbsp;<a href=\"https:\/\/min.io\/docs\/minio\/linux\/reference\/minio-server\/minio-server.html#envvar.MINIO_ROOT_USER\"><code>MINIO_ROOT_USER<\/code><\/a>&nbsp;and&nbsp;<a href=\"https:\/\/min.io\/docs\/minio\/linux\/reference\/minio-server\/minio-server.html#envvar.MINIO_ROOT_PASSWORD\"><code>MINIO_ROOT_PASSWORD<\/code><\/a>&nbsp;configured in the environment file specified to the container.<a class=\"\" href=\"https:\/\/min.io\/docs\/minio\/linux\/_images\/console-bucket-none1.png\"><\/a><\/p>\n\n\n\n<p class=\"has-small-font-size\">You can use the MinIO Console for general administration tasks like Identity and Access Management, Metrics and Log Monitoring, or Server Configuration. Each MinIO server includes its own embedded MinIO Console.<\/p>\n\n\n\n<p class=\"has-small-font-size\">If your local host firewall permits external access to the Console port, other hosts on the same network can access the Console using the IP or hostname for your local host.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Posted from: https:\/\/min.io\/docs\/minio\/linux\/index.html#:~:text=Connect%20Your%20Browser%20to%20the%20MinIO%20Server&amp;text=While%20the%20port%209000%20is,These%20default%20to%20minioadmin%20%7C%20minioadmin%20. https:\/\/min.io\/docs\/minio\/linux\/operations\/install-deploy-manage\/deploy-minio-single-node-single-drive.html 1.)Install the MinIO Server wget https:\/\/dl.min.io\/server\/minio\/release\/linux-amd64\/archive\/minio-20230217175243.0.0.x86_64.rpm -O minio.rpmsudo dnf install minio.rpm 2.)systemd service \/etc\/systemd\/system\/minio.service [root@localhost system]# cat minio.service [Unit] Description=MinIO Documentation=https:\/\/docs.min.io Wants=network-online.target After=network-online.target AssertFileIsExecutable=\/usr\/local\/bin\/minio [Service] WorkingDirectory=\/usr\/local User=minio-user Group=minio-user ProtectProc=invisible EnvironmentFile=-\/etc\/default\/minio ExecStartPre=\/bin\/bash -c &#8220;if [ -z \\&#8221;${MINIO_VOLUMES}\\&#8221; ]; then echo \\&#8221;Variable MINIO_VOLUMES not set in \/etc\/default\/minio\\&#8221;; exit 1; fi&#8221; ExecStart=\/usr\/local\/bin\/minio server $MINIO_OPTS&hellip;&nbsp;<a href=\"https:\/\/roglacup.com\/klaus62\/2023\/02\/23\/interview-with-minio-ceo-anand-babu-periasamy-espeaks\/\" class=\"\" rel=\"bookmark\">Read More &raquo;<span class=\"screen-reader-text\">Interview with MinIO CEO Anand Babu Periasamy | eSPEAKS<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"neve_meta_sidebar":"","neve_meta_container":"","neve_meta_enable_content_width":"","neve_meta_content_width":0,"neve_meta_title_alignment":"","neve_meta_author_avatar":"","neve_post_elements_order":"","neve_meta_disable_header":"","neve_meta_disable_footer":"","neve_meta_disable_title":"","footnotes":""},"categories":[23],"tags":[],"class_list":["post-8431","post","type-post","status-publish","format-standard","hentry","category-storage"],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/roglacup.com\/klaus62\/wp-json\/wp\/v2\/posts\/8431","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/roglacup.com\/klaus62\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/roglacup.com\/klaus62\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/roglacup.com\/klaus62\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/roglacup.com\/klaus62\/wp-json\/wp\/v2\/comments?post=8431"}],"version-history":[{"count":9,"href":"https:\/\/roglacup.com\/klaus62\/wp-json\/wp\/v2\/posts\/8431\/revisions"}],"predecessor-version":[{"id":8455,"href":"https:\/\/roglacup.com\/klaus62\/wp-json\/wp\/v2\/posts\/8431\/revisions\/8455"}],"wp:attachment":[{"href":"https:\/\/roglacup.com\/klaus62\/wp-json\/wp\/v2\/media?parent=8431"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/roglacup.com\/klaus62\/wp-json\/wp\/v2\/categories?post=8431"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/roglacup.com\/klaus62\/wp-json\/wp\/v2\/tags?post=8431"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}