1. JAVA (JDK 1.
8) Installation
Step 1. JDK Installation Go to https://www.oracle.com/in/java/technologies/javase/javase8-archive-
downloads.html download jdk 1.8
Step 2. download jdk 1.8
1
Step 3. sign in oracle account
Step 4. install and go to program file ->java -> jdk
2
Step 5. copy path then got this pc ->Properties -> Advanced System setting ->advance
Step 6. got to Environment variable ->New
Step 7. set the path of jdk in variable value and name is JAVA_HOME
3
Step 8. again, go to Program file ->jdk-> bin folder
Step 9. copy path of bin folder then got this pc ->Properties -> Advanced System setting ->advance->
Environment variable ->path->ok
4
2. Apache-Maven (3.9.3) Installation
Step 1. Go to https://maven.apache.org/install.html
Step 2. got to download
Step 3. download binary zip archive file
5
Step 4. Then go to download folder extract zip file then copy to program file and got apache maven then
copy the path
Step 5. Set this path in Environment variable got this pc ->Properties ->advanced setting ->advance
->new and set name is MAVEN_HOME and above path of maven in variable value
Step 6. Then again go to again go to Program file ->maven -> bin folder
copy path of bin folder then set Environment variable ->path
6
3. Postman
Step 1. Go to https://www.postman.com/downloads/
download postman
4. Eclipse
Step 1. Got to https://www.eclipse.org/downloads/
download
7
Step 2. Go to go to download file and install Eclipse ide for java developer
8
5. PostgreSQL (9.6) Installation
Step 1. Go to https://www.postgresql.org/download/ and click on Windows icon
9
Step 2. After that https://www.postgresql.org/download/windows/ click on Download the installer and
redirect to download page
Click on below download icon of Windows x86-64
10
Step 3. redirect to edb site for downloads
4. after that go to downloads and double click on that postgresql file
5. after click on PostgreSQL click on next till below scree
11
next->next->next->
Note: Save the password and port
12
Step 6. after finish-- uncheck the box for stack builder and click on finish
Step 7. in search box type - pgadmin4 and click on that
13
14
Step 8. after that put password for that and start working
15
Restore the dB dump data
1. Go to path C:\Program Files\PostgreSQL\9.6\bin - <filename.sql/bak> paste db dump file here
2. Go to cmd and paste this path- cd C:\Program Files\PostgreSQL\9.6\bin
C:\Program Files\PostgreSQL\9.6\bin>psql -h localhost -d devdb -U postgres
Password for user postgres: Note- enter your password which you gave for postgresql
WARNING: Console code page (437) differs from Windows code page (1252)
8-bit characters might not work correctly. See psql reference
page "Notes for Windows users" for details.
Type "help" for help.
devdb=# \i full-10aprail.sql
16
17
6. Kafka installation
Step 1. Go to https://kafka.apache.org/downloads Click on -> Get Started -> Quick Start
Step 2. Click on Download
Step 3. Click on url below this line -
18
We suggest the following site for your download:
https://dlcdn.apache.org/kafka/3.5.0/kafka_2.13-3.5.0.tgz
Step 4. Once download is complete then go ahead on Downloads folder and Extract to "kafka_2_13-
3.5.0\"
Step 5. After that click on extract file kafka_2.13-3.5.0 -> check all files are there into bin , config, libs,
and licenses
19
Note:- Also you can rename kafka_2.13-3.5.0 -> Kafka .....(optional)
Step 6. Go to https://kafka.apache.org/quickstart
Step 7. Go ahead on kafka folder and select path C:\Users\jyoti.gupta\Downloads\kafka and type cmd
and click enter
20
cmd prompt showing like this
Step 8. Enter the command .\bin\windows\zookeeper-server-start.bat .\config\zookeeper.properties
21
Step 9. follow step 7 again and enter cmd .\bin\windows\kafka-server-start.bat .\config\
server.properties
22
Step 10. CREATE A TOPIC TO STORE YOUR EVENTS
.\bin\windows\kafka-topics.bat --create --topic topic_demo --bootstrap-server localhost:9092
Step 11. WRITE SOME EVENTS INTO THE TOPIC
.\bin\windows\kafka-console-producer.bat --topic topic_demo --bootstrap-server localhost:9092
Step 12. READ THE EVENTS
.\bin\windows\kafka-console-consumer.bat --topic topic_demo --from-beginning --bootstrap-server
localhost:9092
hello world
topic demo
7. Redis Installation
23
Step 1.Go to https://github.com/microsoftarchive/redis/releases and download Redis-x64-
3.2.100.msi
Step 2. After that go to downloads and double click on redis-msi file
24
Step 3. Click on next and repair and then click on finish
25
Step 4. click on redis-cli and check IP address is there
8. Lombok
Step 1. download Lombok
https://projectlombok.org/download
26
Step 2. Once we've completed the installations, we press the Install/Update button:
Step 3. If the installation is successful, we can exit the
installer.
After installing the plugin, we need to restart the IDE and
ensure that Lombok is correctly configured. We can
check this in the About dialog:
27
For workspace setup
Clone the repository and import maven project and set
jdk 1.8 and do maven build in eclipse
28
29
30