Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for minioadmin (0.15 sec)

  1. cmd/common-main_test.go

    				},
    			},
    		},
    		{
    			`
    export MINIO_ROOT_USERminio
    export MINIO_ROOT_PASSWORD=minio123`,
    			true,
    			nil,
    		},
    		{
    			`
    # simple comment
    # MINIO_ROOT_USER=minioadmin
    # MINIO_ROOT_PASSWORD=minioadmin
    MINIO_ROOT_USER=minio
    MINIO_ROOT_PASSWORD=minio123`,
    			false,
    			[]envKV{
    				{
    					Key:   "MINIO_ROOT_USER",
    					Value: "minio",
    				},
    				{
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Sep 19 18:05:16 GMT 2022
    - 3.7K bytes
    - Viewed (0)
  2. cmd/batch-replicate.go

    //   target:
    //     type: "minio"
    //     bucket: "testbucket1"
    //     endpoint: "https://play.min.io"
    //     path: "on"
    //     credentials:
    //       accessKey: "minioadmin"
    //       secretKey: "minioadmin"
    //       sessionToken: ""
    
    // BatchReplicateFilter holds all the filters currently supported for batch replication
    type BatchReplicateFilter struct {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Nov 22 18:51:46 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  3. internal/auth/credentials.go

    func IsSecretKeyValid(secretKey string) bool {
    	return len(secretKey) >= secretKeyMinLen
    }
    
    // Default access and secret keys.
    const (
    	DefaultAccessKey = "minioadmin"
    	DefaultSecretKey = "minioadmin"
    )
    
    // Default access credentials
    var (
    	DefaultCredentials = Credentials{
    		AccessKey: DefaultAccessKey,
    		SecretKey: DefaultSecretKey,
    	}
    )
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 12:41:13 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool.go

    		//     spark.sparkContext.hadoopConfiguration.set("fs.s3a.path.style.access", "true")
    		//     spark.sparkContext.hadoopConfiguration.set("fs.s3a.access.key", "minioadmin")
    		//     spark.sparkContext.hadoopConfiguration.set("fs.s3a.secret.key", "minioadmin")
    		//
    		//     val df = spark.read.json("s3a://testbucket/s3.json")
    		//
    		//     df.write.parquet("s3a://testbucket/parquet/")
    		//   }
    		// }
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 80.5K bytes
    - Viewed (0)
Back to top