Anas Jayyusi
Anas Jayyusi

Reputation: 1

Connect Visual Studio with remotely Cassandra server

I'm trying to connect Visual Studio C# code with a Cassandra server

The code works fine in localhost, but I want to connect code to make the change directly on the server. I found instructions to edit a cassandra.ymal file like

listen_address
or

start_rpc
or

rpc_address

Note:

Upvotes: 0

Views: 2674

Answers (1)

Haris Khurshid
Haris Khurshid

Reputation: 324

I found the solution, i searched a lot, so i found this, that help me, hope it will help others.
1 ) Install Cassandra Workbench
2 ) Update .cassandraWorkbench.jsonc like below snippet

 //PasswordAuthenticator
{
    "name": "Cluster PasswordAuthenticator", // auth methods
    "contactPoints": ["xxx.xxx.xx.x", "xxx.xxx.xx.x"], // seed_provider -> seeds from your cassandra.yml
    "hosts": ["xxx.xxx.xx.x"], // your host address
    "authProvider": {
        "class": "PasswordAuthenticator",
        "username": "abc", // host username
        "password": "****" // host password
    }
}

Upvotes: 1

Related Questions