FoundationDB Install on EC2 in 3 AZ

I am getting following error when started the FDB on 1st node (planning to use 3 node cluster). Any idea to fix this. I am ok to start from over as this is test deployment only.

fdb> status

Using cluster file `/etc/foundationdb/fdb.cluster'.

Could not communicate with a quorum of coordination servers:
  127.0.0.1:4500  (unreachable)

I have following configuration file setup 
foundationdb.conf
##
## Configuration file for FoundationDB server processes
## Full documentation is available at
## https://apple.github.io/foundationdb/configuration.html#the-configuration-file

[fdbmonitor]
user = foundationdb
group = foundationdb

[general]
restart_delay = 60
## by default, restart_backoff = restart_delay_reset_interval = restart_delay
# initial_restart_delay = 0
# restart_backoff = 60
# restart_delay_reset_interval = 60
cluster_file = /etc/foundationdb/fdb.cluster
# delete_envvars =
# kill_on_configuration_change = true

## Default parameters for individual fdbserver processes
[fdbserver]
command = /usr/sbin/fdbserver
public_address = auto:$ID
listen_address = public
#datadir = /var/lib/foundationdb/data/$ID
logdir = /data/foundationdb/log
# logsize = 10MiB
# maxlogssize = 100MiB
# machine_id = 
# datacenter_id = 
# class = 
# memory = 8GiB
# storage_memory = 1GiB
# cache_memory = 2GiB
# metrics_cluster = 
# metrics_prefix =

## An individual fdbserver process with id 4500
## Parameters set here override defaults from the [fdbserver] section
[fdbserver.4501]
datadir = /data/foundationdb/data1

[fdbserver.4502]
datadir = /data/foundationdb/data2


[backup_agent]
command = /usr/lib/foundationdb/backup_agent/backup_agent
logdir = /data/foundationdb/log

[backup_agent.1]

I don’t see a [fdbserver.4500] section in the conf file. Is it missing? If so, then it might just be that no process is started on the port where the cluster file says you have a coordinator.

yep this problem is fixed. I was not clear initially that I can start storage process on the same port 4500 . I was under impression coordinator is running on 4500 so i should run storage on 4501/4502 as i was using 2 processes and thought having 3 process on 3 ports will use 3 cpu out of 4 on the EC2 .

Little confusing when you read FDB document first time … new to FDB and learning …thanks for the reply.