Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the default password for connecting to tarantool cartridge application

I have a default application on tarantool cartridge (cluster). I want to connect to the cluster's router. I use the command:

tarantoolctl connect admin:_password_@localhost:3301

Where can I find the default password?

like image 517
Andrey V Avatar asked Jun 08 '20 14:06

Andrey V


1 Answers

In cartridge it is called cluster_cookie. You may find the default one here.

If you've created your project using cartridge-cli tool it would depend on your project name:

...
cluster_cookie = '${project_name_lower}-cluster-cookie'
...

And you can manipulate its value from cartridge-cli config

Also, there is an example for ansible-cartridge role config.

like image 88
RunFor Avatar answered Oct 05 '22 09:10

RunFor