Rounting info error on Ubuntu node

I'm inside a high performance Ubuntu node and trying to authenticate to my neo4j database. While the same method works flawlessly on Google Colab. I encounter error

Unable to retrieve routing information

I am inside a jupyter notebook which is being forwarded to my local port 8899 from the ubuntu server.

from llama_index.graph_stores.neo4j import Neo4jPGStore

username="neo4j"
password="3WUQX"
url="neo4j+s:/"

graph_store = Neo4jPGStore(
    username=username,
    password=password,
    url=url,
    refresh_schema=False
)