Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tcp (0.15 sec)

  1. docs/bucket/notifications/README.md

    ```sh
    mc admin config set myminio notify_mqtt:1 broker="tcp://localhost:1883" password="" queue_dir="" queue_limit="0" reconnect_interval="0s"  keep_alive_interval="0s" qos="1" topic="minio" username=""
    ```
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 84K bytes
    - Viewed (2)
  2. 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