Help Center/ ModelArts/ FAQs/ ModelArts Standard Notebook/ How Do I Connect to a Restarted ModelArts Notebook Instance?
Updated on 2025-08-28 GMT+08:00

How Do I Connect to a Restarted ModelArts Notebook Instance?

To resolve this issue, set notebook parameters StrictHostKeyChecking no and UserKnownHostsFile=/dev/null in the local ssh config file.

Host roma-local-cpu
    HostName x.x.x.x # IP address
    Port 22522
    User ma-user
    IdentityFile C:/Users/my.pem
    StrictHostKeyChecking no
    ForwardAgent yes

Note: SSH logins are insecure because the known_hosts file will be ignored during the logins.