linux命令大全
系统相关命令
tar -zxvf xxx.tar 解压压缩包
mv 移动,重命名
mouch 创建文件夹
touch 创建文件
vim 编辑文件
uname -a 查看系统信息
source /etc/profile 刷新配置
kill -9 强制杀死进程
losf -i:port 根据端口查询进程
ps -ef | grep xxx 根据条件查询进程
Kafka相关命令
./kafka-server-start -daemon config/server.properties 后台启动kafka服务器
bin/kafka-topics.sh --bootstrap-server localhost:9092 --create --topic demo --partitions 2 --replication-factor 1 新建topic
./bin/kafka-topics.sh --bootstrap-server localhost:9092 --list 查询topic列表
./bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test 发送消息
./bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --from-beginning 消费消息