Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 372 for echo (0.01 sec)

  1. docs/auditlog/auditlog-echo.md

    # `auditlog-echo`: A tool to view MinIO Audit logs on the console
    
    1. Run the tool with:
    
    ```
    go run docs/auditlog/auditlog-echo.go
    ```
    
    The listen port has a default value (8080), but can be set with the `-port` flag.
    
    2. Configure audit logging in MinIO with for example:
    
    ```
    mc admin config set myminio audit_webhook enable=on endpoint=http://localhost:8080
    ```
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-05-01 21:31
    - 447 bytes
    - Viewed (0)
  2. docs/auditlog/auditlog-echo.go

    Aditya Manthramurthy <******@****.***> 1714599073 -0700
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-05-01 21:31
    - 1.5K bytes
    - Viewed (0)
  3. docs/site-replication/run-ssec-object-replication.sh

    #!/usr/bin/env bash
    
    # shellcheck disable=SC2120
    exit_1() {
    	cleanup
    
    	echo "minio1 ============"
    	cat /tmp/minio1_1.log
    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    
    	exit 1
    }
    
    cleanup() {
    	echo -n "Cleaning up instances of MinIO ..."
    	pkill minio || sudo pkill minio
    	pkill -9 minio || sudo pkill -9 minio
    	rm -rf /tmp/minio{1,2}
    	echo "done"
    }
    
    cleanup
    
    export MINIO_CI_CD=1
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-09-24 08:03
    - 9.9K bytes
    - Viewed (0)
  4. Makefile

    test-root-disable: install-race
    	@echo "Running minio root lockdown tests"
    	@env bash $(PWD)/buildscripts/disable-root.sh
    
    test-ilm: install-race
    	@echo "Running ILM tests"
    	@env bash $(PWD)/docs/bucket/replication/setup_ilm_expiry_replication.sh
    
    test-ilm-transition: install-race
    	@echo "Running ILM tiering tests with healing"
    	@env bash $(PWD)/docs/bucket/lifecycle/setup_ilm_transition.sh
    
    test-pbac: install-race
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-27 00:44
    - 11.2K bytes
    - Viewed (0)
  5. test-site/activator.bat

        echo.
        echo Options:
        echo -jvm-debug [port]  Turn on JVM debugging, open at the given port.  Defaults to 9999 if no port given.
        echo.
        echo Environment variables ^(read from context^):
        echo JAVA_OPTS          Environment variable, if unset uses ""
        echo SBT_OPTS           Environment variable, if unset uses ""
        echo ACTIVATOR_OPTS     Environment variable, if unset uses ""
        echo.
    Registered: 2025-06-06 09:08
    - Last Modified: 2015-04-20 08:41
    - 7.2K bytes
    - Viewed (0)
  6. buildscripts/test-timeout.sh

    catch
    
    function gen_put_request() {
    	hdr_sleep=$1
    	body_sleep=$2
    
    	echo "PUT /testbucket/testobject HTTP/1.1"
    	sleep $hdr_sleep
    	echo "Host: foo-header"
    	echo "User-Agent: curl/8.2.1"
    	echo "Accept: */*"
    	echo "Content-Length: 30"
    	echo ""
    
    	sleep $body_sleep
    	echo "random line 0"
    	echo "random line 1"
    	echo ""
    	echo ""
    }
    
    function send_put_object_request() {
    	hdr_timeout=$1
    	body_timeout=$2
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-12-02 13:21
    - 2.9K bytes
    - Viewed (0)
  7. buildscripts/verify-build.sh

    }
    
    function main() {
    	echo "Testing in FS setup"
    	if ! run_test_fs; then
    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	echo "Testing in Erasure setup"
    	if ! run_test_erasure; then
    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	echo "Testing in Distributed Erasure setup"
    	if ! run_test_dist_erasure; then
    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-05-24 19:28
    - 6.7K bytes
    - Viewed (0)
  8. src/packaging/common/scripts/postinst

            echo "### You can start fess service by executing"
            echo " sudo systemctl start fess.service"
    
        elif command -v chkconfig >/dev/null; then
            echo "### NOT starting on installation, please execute the following statements to configure fess service to start automatically using chkconfig"
            echo " sudo chkconfig --add fess"
            echo "### You can start fess service by executing"
            echo " sudo service fess start"
    Registered: 2025-05-26 08:04
    - Last Modified: 2015-12-10 01:24
    - 3.1K bytes
    - Viewed (0)
  9. src/main/assemblies/files/generate-thumbnail

      echo "No filetype."
      exit 1
    else
      echo "Unsupported type: ${cmd_type}"
      exit 1
    fi
    
    if [[ ! -f ${output_file} ]] ; then
      echo "Thumbnail is not created."
      exit 1
    Registered: 2025-05-26 08:04
    - Last Modified: 2023-06-12 13:13
    - 2.5K bytes
    - Viewed (0)
  10. helm/minio/templates/_helper_create_bucket.txt

    			if [ $OBJECTLOCKING = true ]; then
    				echo "Creating bucket with OBJECTLOCKING '$BUCKET'"
    				${MC} mb --with-lock myminio/$BUCKET
    			elif [ $OBJECTLOCKING = false ]; then
    				echo "Creating bucket '$BUCKET'"
    				${MC} mb myminio/$BUCKET
    			fi
    		elif [ -z $OBJECTLOCKING ]; then
    			echo "Creating bucket '$BUCKET'"
    			${MC} mb myminio/$BUCKET
    		else
    			echo "Bucket '$BUCKET' already exists."
    		fi
    	fi
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-01-12 18:18
    - 3.5K bytes
    - Viewed (0)
Back to top