X-pack questions on installation

I believe I have included the correct usernames and passwords however it seems that im still not getting index data to load.

Here are the 3 configs without commented lines:

root@oc-elk:/etc/elasticsearch# cat elasticsearch.yml | grep -v "#"
cluster.name: ocs-elk-cluster
node.name: oc-elk
path.data: /var/lib/elasticsearch
path.logs: /var/log/elasticsearch
network.host: 10.7.1.61

root@oc-elk:/etc/logstash# cat logstash.yml | grep -v "#"
path.data: /var/lib/logstash
path.logs: /var/log/logstash
xpack.monitoring.elasticsearch.username: logstash_system
xpack.monitoring.elasticsearch.password: xxxxxx

root@oc-elk:/etc/kibana# cat kibana.yml | grep -v "#"
server.host: "10.7.1.61"
server.name: "oc-elk"
elasticsearch.url: "http://10.7.1.61:9200"
elasticsearch.username: "kibana"
elasticsearch.password: "xxxxx"

I think it's interesting that the logstash info does not have quotes but that is per the documentation.