Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for macos (0.18 sec)

  1. README.md

    ## macOS
    
    Use the following commands to run a standalone MinIO server on macOS.
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Feb 14 17:51:34 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  2. docs/docker/README.md

    ```
    
    ### Run MinIO Docker as a regular user
    
    Docker provides standardized mechanisms to run docker containers as non-root users.
    
    #### GNU/Linux and macOS (regular user)
    
    On Linux and macOS you can use `--user` to run the container as regular user.
    
    > NOTE: make sure --user has write permission to *${HOME}/data* prior to using `--user`.
    
    ```sh
    mkdir -p ${HOME}/data
    docker run \
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 8.2K bytes
    - Viewed (0)
  3. docs/orchestration/docker-compose/README.md

    ### GNU/Linux and macOS
    
    ```sh
    docker-compose pull
    docker-compose up
    ```
    
    or
    
    ```sh
    docker stack deploy --compose-file docker-compose.yaml minio
    ```
    
    ### Windows
    
    ```sh
    docker-compose.exe pull
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Mar 31 19:20:56 GMT 2023
    - 3K bytes
    - Viewed (0)
  4. internal/ioutil/ioutil.go

    	}
    	if fi1.Mode() != fi2.Mode() {
    		return false
    	}
    	return fi1.Size() == fi2.Size()
    }
    
    // DirectioAlignSize - DirectIO alignment needs to be 4K. Defined here as
    // directio.AlignSize is defined as 0 in MacOS causing divide by 0 error.
    const DirectioAlignSize = 4096
    
    // CopyAligned - copies from reader to writer using the aligned input
    // buffer, it is expected that input buffer is page aligned to
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 19 11:26:59 GMT 2024
    - 10.3K bytes
    - Viewed (0)
  5. docs/distributed/README.md

    ![Distributed MinIO, n nodes with m drives each](https://github.com/minio/minio/blob/master/docs/screenshots/Architecture-diagram_distributed_nm.png?raw=true)
    
    ### GNU/Linux and macOS
    
    ```sh
    export MINIO_ROOT_USER=<ACCESS_KEY>
    export MINIO_ROOT_PASSWORD=<SECRET_KEY>
    minio server http://host{1...n}/export{1...m}
    ```
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 8.8K bytes
    - Viewed (0)
  6. cmd/testdata/xl-meta-merge.zip

    storage, you must map local persistent directories from the host OS to the container using the `podman -v` option. For example, `-v /mnt/data:/data` maps the host OS drive at `/mnt/data` to `/data` on the container. ## macOS Use the following commands to run a standalone MinIO server on macOS. Standalone MinIO servers are best suited for early development and evaluation. Certain features such as versioning, object locking, and bucket replication require distributed deploying MinIO with Erasure Coding....
    ZIP Archive
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Mar 08 17:50:48 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  7. cmd/server-main.go

    		RoundTripper: globalRemoteTargetTransport,
    		Logger: func(err error) {
    			if err != nil && !errors.Is(err, context.Canceled) {
    				replLogIf(GlobalContext, err)
    			}
    		},
    	})
    
    	// On macOS, if a process already listens on LOCALIPADDR:PORT, net.Listen() falls back
    	// to IPv6 address ie minio will start listening on IPv6 address whereas another
    	// (non-)minio process is listening on IPv4 of given port.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 33K bytes
    - Viewed (1)
  8. CREDITS

    code under terms of your choice, provided that, if the incorporated
    material is not limited to numerical parameters, data structure
    layouts and accessors, or small macros, inline functions and templates
    (ten or fewer lines in length), you do both of the following:
    
       a) Give prominent notice with each copy of the object code that the
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:31:35 GMT 2024
    - 1.6M bytes
    - Viewed (0)
  9. cmd/xl-storage.go

    			// return FileNotFound to indicate its an empty prefix.
    			if HasSuffix(deletePath, SlashSeparator) {
    				return errFileNotFound
    			}
    			// if we have .DS_Store only on macOS
    			if runtime.GOOS == globalMacOSName {
    				storeFilePath := pathJoin(deletePath, ".DS_Store")
    				_, err := Stat(storeFilePath)
    				// .DS_Store exists
    				if err == nil {
    					// delete first
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
Back to top