wiki-files/kafka/operation.md

23 lines
376 B
Markdown
Raw Normal View History

2022-01-20 11:45:35 +08:00
---
title: 基本操作
description:
published: true
2022-01-20 21:13:09 +08:00
date: 2022-01-20T13:13:08.033Z
2022-01-20 11:45:35 +08:00
tags: kafka
editor: markdown
dateCreated: 2022-01-20T03:45:31.873Z
---
# 查看主题
进入 bin 目录
2022-01-20 21:13:09 +08:00
```bash
2022-01-20 11:45:35 +08:00
$ ./kafka-topics.sh --bootstrap-server localhost:9092 --list
2022-01-20 21:13:09 +08:00
```
# 删除主题
```bash
$ ./kafka-topics.sh --bootstrap-server localhost:9092 --delete --topic deleteTopic
2022-01-20 11:45:35 +08:00
```