Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 262 for restart (0.24 sec)

  1. src/packaging/rpm/init.d/fess

        condrestart|try-restart)
            rh_status_q || exit 0
            restart
            ;;
        *)
            echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}"
            exit 2
    esac
    Shell Script
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 3.7K bytes
    - Viewed (1)
  2. docs/en/docs/js/termynal.js

        }
    
        generateRestart() {
            const restart = document.createElement('a')
            restart.onclick = (e) => {
                e.preventDefault()
                this.container.innerHTML = ''
                this.init()
            }
            restart.href = '#'
            restart.setAttribute('data-terminal-control', '')
            restart.innerHTML = "restart ↻"
            return restart
        }
    
        generateFinish() {
    JavaScript
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 9.3K bytes
    - Viewed (0)
  3. src/packaging/common/scripts/postinst

            echo "### You can start fess service by executing"
            echo " sudo /etc/init.d/fess start"
        fi
    elif [ "$RESTART_ON_UPGRADE" = "true" ]; then
    
        echo -n "Restarting fess service..."
        if command -v systemctl >/dev/null; then
            systemctl daemon-reload
            systemctl restart fess.service || true
    
        elif [ -x /etc/init.d/fess ]; then
            if command -v invoke-rc.d >/dev/null; then
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 3.1K bytes
    - Viewed (0)
  4. docs/site-replication/run-multi-site-ldap.sh

    	exit_1
    fi
    
    sleep 10
    
    ./mc idp ldap policy entities minio1
    ./mc idp ldap policy entities minio2
    ./mc idp ldap policy entities minio3
    
    ./mc admin service restart minio1
    ./mc admin service restart minio2
    ./mc admin service restart minio3
    
    sleep 10
    
    ./mc idp ldap policy entities minio1
    ./mc idp ldap policy entities minio2
    ./mc idp ldap policy entities minio3
    
    Shell Script
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Feb 14 04:51:23 GMT 2024
    - 10K bytes
    - Viewed (1)
  5. docs/bigdata/README.md

    Once the config changes are applied, proceed to restart **Hadoop** services.
    
    ![hdfs-services](https://github.com/minio/minio/blob/master/docs/bigdata/images/image7.png?raw=true "hdfs restart services")
    
    ### **3.2 Configure Spark2**
    
    Navigate to **Services** -> **Spark2** -> **CONFIGS** as shown below
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 14.7K bytes
    - Viewed (0)
  6. docs/sts/casdoor.md

    Once successfully set restart the MinIO instance.
    
    ```
    mc admin service restart myminio
    ```
    
    ### Using WebIdentiy API
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 6.6K bytes
    - Viewed (0)
  7. docs/throttle/README.md

    export MINIO_ROOT_USER=your-access-key
    export MINIO_ROOT_PASSWORD=your-secret-key
    minio server http://server{1...8}/mnt/hdd{1...16}
    ```
    
    or
    
    ```sh
    mc admin config set myminio/ api requests_max=1600
    mc admin service restart myminio/
    ```
    
    > NOTE: A zero value of `requests_max` means MinIO will automatically calculate requests based on available RAM size and that is the default behavior.
    
    ### Configuring connection (wait) deadline
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Feb 12 00:51:25 GMT 2022
    - 2.4K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/concepts.md

    Here are some possible ideas:
    
    * An "Init Container" in Kubernetes that runs before your app container
    * A bash script that runs the previous steps and then starts your application
        * You would still need a way to start/restart *that* bash script, detect errors, etc.
    
    !!! tip
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 18K bytes
    - Viewed (0)
  9. docs/distributed/DECOMMISSION.md

    setups, if you have `MINIO_VOLUMES="http://minio{1...2}/data{1...4} http://minio{3...4}/data{1...4}"`, you can remove the first argument `http://minio{1...2}/data{1...4}` to update your `MINIO_VOLUMES` setting, then restart all the servers in the setup in parallel using `systemctl restart minio`.
    
    - On Kubernetes setups, the statefulset specification needs to be modified by changing the command line input for the MinIO container. Once the relevant changes are done, proceed to execute `kubectl...
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Jul 11 14:59:49 GMT 2022
    - 8.3K bytes
    - Viewed (0)
  10. README.md

    access to port 9000
    
    ```sh
    iptables -A INPUT -p tcp --dport 9000 -j ACCEPT
    service iptables restart
    ```
    
    Below command enables all incoming traffic to ports ranging from 9000 to 9010.
    
    ```sh
    iptables -A INPUT -p tcp --dport 9000:9010 -j ACCEPT
    service iptables restart
    ```
    
    ## Test MinIO Connectivity
    
    ### Test using MinIO Console
    
    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)
Back to top