(1) Open new SSH client, and run the following step:

	cd /root/TrainingOnHDP/confluent-4.0.0
	bin/kafka-server-start etc/kafka/server.properties
	
(2) Open new SSH client, and run the following step:

	/root/TrainingOnHDP/confluent-4.0.0
	bin/connect-standalone etc/kafka/connect-standalone.properties etc/kafka-connect-jdbc/mysql.properties
	
(3) Open new SSH client, and run the following step:
	cd /root/TrainingOnHDP/RDBMS2Hadoop/kafka
	./kafka2HDFS.sh

(4) Login mysql on the command line
	mysql -u hadoop -p

(5) Run the following step to create new table
	INSERT INTO demo_products VALUES (1001, 'PEN', 'Pen Red', 5000, 1.23);

	
	