ERROR: Preparation failed: ssh command Connect() error: ssh Dial() error: ssh: handshake failed: EOF

Hi, I am creating CI for my project. I am running two servers in localhost, one port 9010 and another one on port 8010. The CI is failing at the the set up stage with this error.

ERROR: Preparation failed: ssh command Connect() error: ssh Dial() error: ssh: handshake failed: EOF

I have tried to set up my config.toml like this

[[runners]]
[runners.ssh]
user = “…”
host = “localhost”
port = “9030”
identity_file = “/path/.ssh/id_rsa”
ssh_options = [“UserKnownHostsFile=/dev/null”, “StrictHostKeyChecking=no”]
known_hosts_file = “/path/.ssh/known_hosts”

But it is not working. Any help is appreciated
How to Use GitLab GitLab CI/CD issues ssh