Does replication needs root access?

Does replication always need root access or the login can just needs ‘CREATE DATABASE’ and ‘REPLICATION’ privileges.

Thanks,
Sid.

You should be able to do what you need (start up replication) with just CREATE DATABASE permission. And of course you will need the credentials to log into the source database from which you are replicating the data.

1 Like

Thank you Hanson. Do I need to be root or I can use just another login with specific memsql permission? That is what I have done before in the past with other database vendors using a dedicated replication login.

Sid.

No, you don’t need to be root. The user you log in as needs to have CREATE DATABASE permission. That can be granted to you by another user.

Thanks for the information.