05 2021 档案
摘要:#!/bin/bash count=`ps aux | grep "kafka" | grep -v grep -c` if [ $count -eq 0 ]; then echo 'Not running...' else echo 'running...' fi
阅读全文
摘要:from selenium import webdriver from pykeyboard import PyKeyboard import time import os k = PyKeyboard() files = os.listdir('H:\Report2020') for f in f
阅读全文
摘要:1、先安装模块PyUserInput pip install PyUserInput -i https://pypi.mirrors.ustc.edu.cn/simple/ pip install pypiwin32 -i https://pypi.mirrors.ustc.edu.cn/simpl
阅读全文
摘要:在config目录下多了一个kraft目录,在该目录中有一套新的配置文件,可以直接脱离ZooKeeper运行 配置kraft目录中的server.properties文件 单机的话主要是修改下面的配置 advertised.listeners=PLAINTEXT://localhost:9092 将
阅读全文