This is a creation in Article, where the information may have evolved or changed.
Minio is an open source implementation of AWS S3, based on Golang development, which is a server that clients can access through the browser. And it provides an API for file manipulation, which makes it easy to develop more clients for it or to access files stored on Minio using your familiar programming language.
Minio
Here we use it as a private cloud, usually running on a Linux or Windows server, but the official version of ARM is also available, and then we'll deploy Minio on Android phones.
Visit Minio's official website https://minio.io/to download the latest ARM compiled version.
Https://dl.minio.io/server/minio/release/linux-arm/minio
The official has already provided the deployment method, very simple, but this step we first wait for the operation.
$ wget https://dl.minio.io/server/minio/release/linux-arm/minio$ chmod +x minio$ ./minio server ~/Photos
Make sure the phone is rooted, copy the Minio to the phone memory card, note that Minio cannot be executed in the built-in storage or memory card, because the memory card is formatted into the NOEXEC format, which requires mount to execute, which is more troublesome. I copied to the memory card first, then use Root Explorer to/mnt.
Now assume that the full path to your Minio is/mnt/minio, and we set executable permissions for Minio.
suchmod 777 /mnt/minio
It is recommended to use the ADB tool after connecting the computer, if it is not convenient to install TERMUX on the phone after operation.
Next on the memory card to build a folder, whatever is best in English, will let Minio listen to this folder, such as my S3, the full path/sdcard/s3, and then start Minio server.
sucd /mnt./minio server /sdcard/S3
Then you see that the Minio has been started, and the server address ports that are listening are displayed, along with the accesskey and secretkey information.
Start Minio
Win10 under the honey juice garbled, the normal display is relatively clear.
We open the prompt server address, there will be a login interface.
Minio Landing Interface
After entering two keys, you can upload and share files happily.