部署minio
此部署是在原Debian 12.7 部署 Transmission基础上进行部署
- 下载minio
wget -c https://dl.min.io/server/minio/release/linux-amd64/minio_20241013133411.0.0_amd64.deb
- 安装
apt install -y ./minio_20241013133411.0.0_amd64.deb
- 查看版本
/usr/local/bin/minio --version
- 创建用户
groupadd -r minio-user useradd -M -r -g minio-user minio-user
- 创建目录
mkdir -p /Download/minio_data chown minio-user:minio-user /Download/minio_data
- 创建配置信息
cat > /etc/default/minio _EOF_ # MINIO_ROOT_USER and MINIO_ROOT_PASSWORD sets the root account for the MinIO server. # This user has unrestricted permissions to perform S3 and administrative API operations on any resource in the deployment. # Omit to use the default values 'minioadmin:minioadmin'. # MinIO recommends setting non-default values as a best practice, regardless of environment MINIO_ROOT_USER=admin MINIO_ROOT_PASSWORD=password # MINIO_VOLUMES sets the storage volume or path to use for the MinIO server. MINIO_VOLUMES="/Download/minio_data" # MINIO_OPTS sets any additional commandline options to pass to the MinIO server. # For example, `--console-address :9001` sets the MinIO Console listen port MINIO_OPTS="--console-address 0.0.0.0:9001" _EOF_
- 启动
minio
服务systemctl status minio.service systemctl enable minio.service systemctl start minio.service
- 访问
http://192.168.124.89:9001/