Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 1,772 for user3 (0.02 sec)

  1. helm-releases/minio-3.4.7.tgz

    active return 0 } # checkUserExists ($username) # Check if the user exists, by using the exit code of `mc admin user info` checkUserExists() { USER=$1 CMD=$(${MC} admin user info myminio $USER > /dev/null 2>&1) return $? } # createUser ($username, $password, $policy) createUser() { USER=$1 PASS=$2 POLICY=$3 # Create the user if it does not exist if ! checkUserExists $USER ; then echo "Creating user '$USER'" ${MC} admin user add myminio $USER $PASS else echo "User '$USER' already exists." fi # set policy...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jan 25 20:49:24 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  2. docs/docker/README.md

    1. ```
    2.  
    3. ### Run MinIO Docker as a regular user
    4.  
    5. Docker provides standardized mechanisms to run docker containers as non-root users.
    6.  
    7. #### GNU/Linux and macOS (regular user)
    8.  
    9. On Linux and macOS you can use `--user` to run the container as regular user.
    10.  
    11. > NOTE: make sure --user has write permission to *${HOME}/data* prior to using `--user`.
    12.  
    13. ```sh
    14. mkdir -p ${HOME}/data
    15. docker run \
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  3. helm-releases/minio-3.2.0.tgz

    active return 0 } # checkUserExists ($username) # Check if the user exists, by using the exit code of `mc admin user info` checkUserExists() { USER=$1 CMD=$(${MC} admin user info myminio $USER > /dev/null 2>&1) return $? } # createUser ($username, $password, $policy) createUser() { USER=$1 PASS=$2 POLICY=$3 # Create the user if it does not exist if ! checkUserExists $USER ; then echo "Creating user '$USER'" ${MC} admin user add myminio $USER $PASS else echo "User '$USER' already exists." fi # set policy...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Oct 13 02:16:24 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  4. helm-releases/minio-3.3.3.tgz

    active return 0 } # checkUserExists ($username) # Check if the user exists, by using the exit code of `mc admin user info` checkUserExists() { USER=$1 CMD=$(${MC} admin user info myminio $USER > /dev/null 2>&1) return $? } # createUser ($username, $password, $policy) createUser() { USER=$1 PASS=$2 POLICY=$3 # Create the user if it does not exist if ! checkUserExists $USER ; then echo "Creating user '$USER'" ${MC} admin user add myminio $USER $PASS else echo "User '$USER' already exists." fi # set policy...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Dec 11 17:28:02 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  5. docs/sts/assume-role.md

    1. </ResponseMetadata>
    2. </AssumeRoleResponse>
    3. ```
    4.  
    5. ## Using AssumeRole API
    6.  
    7. ```
    8. export MINIO_ROOT_USER=minio
    9. export MINIO_ROOT_PASSWORD=minio123
    10. minio server ~/test
    11. ```
    12.  
    13. Create new users following the multi-user guide [here](https://min.io/docs/minio/linux/administration/identity-access-management.html)
    14.  
    15. ### Testing an example with awscli tool
    16.  
    17. > Use the same username and password created in the previous steps.
    18.  
    19. ```
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  6. docs/pt/docs/virtual-environments.md

    1. ```plaintext
    2. /home/user/code/awesome-project/.venv/bin/python
    3. ```
    4.  
    5. e usa esse.
    6.  
    7. ////
    8.  
    9. //// tab | Windows
    10.  
    11. ```plaintext
    12. C:\Users\user\code\awesome-project\.venv\Scripts;C:\Windows\System32
    13. ```
    14.  
    15. Isso significa que o sistema agora comeรงarรก a procurar primeiro por programas em:
    16.  
    17. ```plaintext
    18. C:\Users\user\code\awesome-project\.venv\Scripts
    19. ```
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 10 10:37:13 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  7. helm/minio/values.yaml

    1. runAsGroup: 1000
    2. resources:
    3. requests:
    4. memory: 128Mi
    5. # Command to run after the main command on exit
    6. exitCommand: ""
    7.  
    8. ## List of users to be created after minio install
    9. ##
    10. users:
    11. ## Username, password and policy to be assigned to the user
    12. ## Default policies are [readonly|readwrite|writeonly|consoleAdmin|diagnostics]
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 10 15:48:31 UTC 2024
    - 18.8K bytes
    - Viewed (1)
  8. android/guava/src/com/google/common/util/concurrent/ListenableFuture.java

    1. * `-android` "flavors.")
    2. *
    3. * (We could consider releasing a listenablefuture:1.0.1 someday. But we would want to look into how
    4. * that affects users, especially users of the Android Gradle Plugin, since the plugin developers
    5. * put in a special hack for us: https://issuetracker.google.com/issues/131431257)
    6. */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java

    1. */
    2. @Nonnull
    3. InputStream openStream() throws IOException;
    4.  
    5. /**
    6. * Provides a user-friendly hint about the location of the source.
    7. * This could be a local file path, a URI or just an empty string.
    8. * The intention is to assist users during error reporting.
    9. *
    10. * @return a user-friendly hint about the location of the source, never {@code null}
    11. */
    12. @Nonnull
    13. String getLocation();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. docs/em/docs/tutorial/security/simple-oauth2.md

    1. }
    2. ```
    3.  
    4. ### ๐Ÿ”• ๐Ÿ‘ฉโ€๐Ÿ’ป
    5.  
    6. ๐Ÿ”œ ๐Ÿ”„ โฎ๏ธ ๐Ÿ”• ๐Ÿ‘ฉโ€๐Ÿ’ป, ๐Ÿ”“ โฎ๏ธ:
    7.  
    8. ๐Ÿ‘ฉโ€๐Ÿ’ป: `alice`
    9.  
    10. ๐Ÿ”: `secret2`
    11.  
    12. &amp; ๐Ÿ”„ โš™๏ธ ๐Ÿ› ๏ธ `GET` โฎ๏ธ โžก `/users/me`.
    13.  
    14. ๐Ÿ‘† ๐Ÿ”œ ๐Ÿคš "๐Ÿ”• ๐Ÿ‘ฉโ€๐Ÿ’ป" โŒ, ๐Ÿ’–:
    15.  
    16. ```JSON
    17. {
    18. "detail": "Inactive user"
    19. }
    20. ```
    21.  
    22. ## ๐ŸŒƒ
    23.  
    24. ๐Ÿ‘† ๐Ÿ”œ โœ”๏ธ ๐Ÿงฐ ๐Ÿ› ๏ธ ๐Ÿ ๐Ÿ’‚โ€โ™‚ โš™๏ธ โš“๏ธ ๐Ÿ”› `username` &amp; `password` ๐Ÿ‘† ๐Ÿ› ๏ธ.
    25.  
    26. โš™๏ธ ๐Ÿ‘ซ ๐Ÿงฐ, ๐Ÿ‘† ๐Ÿ’ช โš’ ๐Ÿ’‚โ€โ™‚ โš™๏ธ ๐Ÿ”— โฎ๏ธ ๐Ÿ™† ๐Ÿ’ฝ &amp; โฎ๏ธ ๐Ÿ™† ๐Ÿ‘ฉโ€๐Ÿ’ป โš–๏ธ ๐Ÿ’ฝ ๐Ÿท.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top