VA-003 Explain Vault architecture Practice Question
A startup is deploying Vault for the first time. They want to use Integrated Storage for simplicity. They plan to run Vault on three small instances. During initial setup, they start the first node and initialize Vault, obtaining the unseal keys and root token. Then they start the second node and run `vault operator raft join http://<first_node>:8200`. The second node joins successfully. They then start the third node and attempt to join, but the join command fails with an error saying 'no leader'. What is the most likely cause?
⚠ Common exam trap
HashiCorp often tests the misconception that initializing Vault automatically makes it ready to accept cluster joins, when in fact the node remains sealed and cannot act as a leader until unsealed.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
The first node was not unsealed before attempting to join the third node.
In a Vault Integrated Storage (Raft) cluster, a newly joined node must be able to contact an unsealed leader to complete the join process. If the first node (the initial leader) is still sealed after initialization, it cannot participate in Raft consensus or respond to join requests. The third node's join fails with 'no leader' because the sealed first node cannot act as a leader, and the second node, while joined, has not been unsealed and thus cannot become leader either. Unsealing the first node would restore its leadership and allow the third node to join.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
The first node was not unsealed before attempting to join the third node.
Why this is correct
The leader must be unsealed for joins to work.
- ✗
The third node is trying to join using the wrong IP address.
Why it's wrong here
Would give a connection error, not 'no leader'.
- ✗
The Raft cluster requires a quorum of 2 nodes to elect a leader, but the first node may have been sealed.
Why it's wrong here
If first node is sealed, there is no leader regardless of quorum.
- ✗
The second node was not unsealed.
Why it's wrong here
Only the leader needs to be unsealed for join.
Go deeper
Related to this question
About these practice questions
One of 498 original VA-003 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This VA-003 practice question is part of Courseiva's free HashiCorp certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the VA-003 exam.