core-01 ~ # fleetctl status
core-01 ~ # ssh-add ~/.vagrant.d/insecure_private_key
Could not open a connection to your authentication agent.
core-01 ~ # eval `ssh-agent -s`
Agent pid 1089
core-01 ~ # ssh-add ~/.vagrant.d/insecure_private_key
/root/.vagrant.d/insecure_private_key: No such file or directory
core-01 ~ # fleetctl list-machines
Failed initializing SSH client: dial tcp 127.0.0.1:2222: connection refused core-01 ~ # cd /run/
blkid/ etcd/ issue.d/ mdadm/ udev/
coreos/ fleet/ lock/ mount/ user/
dbus/ initramfs/ log/ systemd/ utmp
docker.sock issue lvm/ tmpfiles.d/
core-01 ~ # cd /run/fleet/units/
core-01 units # vi myapp.service
core-01 units # ls
myapp.service
core-01 units # cat myapp.service
[unit]
Description=MyApp
After=docker.service
Requires=docker.service
[Service]
ExecStart=/usr/bin/docker run busybox /bin/sh -c "while true; do echo Hello World; sleep 1; done"
core-01 units # fleetctl start myapp.service
Failed initializing SSH client: dial tcp 127.0.0.1:2222: connection refused core-01 units # fleetctl version
fleetctl version 0.5.0
core-01 units #
I cannot start/ list my fleet machines.
Pls help me, I'm a newbie.
Thanks in advance.