[hadoop] How to check if ZooKeeper is running or up from command prompt?

echo stat | nc localhost 2181 | grep Mode
echo srvr | nc localhost 2181 | grep Mode #(From 3.3.0 onwards)

Above will work in whichever modes Zookeeper is running (standalone or embedded).

Another way

If zookeeper is running in standalone mode, its a JVM process. so -

jps | grep Quorum

will display list of jvm processes; something like this for zookeeper with process ID

HQuorumPeer

Examples related to hadoop

Hadoop MapReduce: Strange Result when Storing Previous Value in Memory in a Reduce Class (Java) What is the difference between spark.sql.shuffle.partitions and spark.default.parallelism? How to check Spark Version What are the pros and cons of parquet format compared to other formats? java.lang.RuntimeException: Unable to instantiate org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient How to export data from Spark SQL to CSV How to copy data from one HDFS to another HDFS? How to calculate Date difference in Hive Select top 2 rows in Hive Spark - load CSV file as DataFrame?

Examples related to config

How to create multiple output paths in Webpack config Get environment value in controller Is it possible to get the current spark context settings in PySpark? How to check if ZooKeeper is running or up from command prompt? Spring Boot and multiple external configuration files How change default SVN username and password to commit changes? How to use ConfigurationManager Python: How would you save a simple settings/config file? Using logging in multiple modules Why Git is not allowing me to commit even after configuration?

Examples related to apache-zookeeper

List all kafka topics How to check if ZooKeeper is running or up from command prompt? Is there a way to delete all the data from a topic or delete the topic before every run? Zookeeper connection error Explaining Apache ZooKeeper

Examples related to apache-kafka

List all kafka topics How to view kafka message When to use RabbitMQ over Kafka? How to list all available Kafka brokers in a cluster? How to check whether Kafka Server is running? Leader Not Available Kafka in Console Producer How to Delete a topic in apache kafka Kafka consumer list What command shows all of the topics and offsets of partitions in Kafka? changing kafka retention period during runtime

Examples related to ps

How to check if ZooKeeper is running or up from command prompt? How find out which process is using a file in Linux? How to examine processes in OS X's Terminal? Check if program is running with bash shell script?