Hi@akhtar,
To create kafka topic you can use the below command.
$ ./bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic topic-name
You can change the port no in the config/server.properties file.
Thank You