confluent start

Description

Start Confluent Platform services. For a list of available services, see Packages.

Usage

confluent start [<service>]

Tip

For usage information, enter confluent help start.

Options

None.

Positional arguments

Name, shorthand Default Description
<service> All services The service name. If specified, it starts the service and all dependencies.

Examples

  • Start all available services:

    confluent start
    

    Your output should resemble:

    Starting zookeeper
    zookeeper is [UP]
    Starting kafka
    kafka is [UP]
    Starting schema-registry
    schema-registry is [UP]
    Starting kafka-rest
    kafka-rest is [UP]
    Starting connect
    connect is [UP]
    
  • Start Kafka and ZooKeeper as its dependency:

    confluent start kafka
    

    Your output should resemble:

    Starting zookeeper
    zookeeper is [UP]
    Starting kafka
    kafka is [UP]