got groups in rust

two commands used to grant groups :
( in console )   oxide.usergroup add steamidhere vip

( in chat )    /chat user add steamidhere vip

copied a list of all vips and added them like:
vip add steamidhere

My question is how do you get them to sync?:
It says when putting in  vip add steamidhere   into the second server that the user already exist.
It shows in the php myadmin and stops me adding a duplicate,  but they are not syncing with both servers
as in people in server 1 gets vip and its not auto adding to the database nor updating the other server with the players
vip group.

Config below:

{
"ServerId": "RealPvE",
"PollIntervalSeconds": 300,
"DatabaseConfiguration": {
"Host": "*****",
"Port": 3306,
"Username": "**********",
"Password": "**********",
"Database": "***************"
},
"GroupPermissions": [
{
"CommandName": "admin",
"GroupName": "admin",
"ExtendedPermissionHandling": true,
"PermissionUse": true,
"ProtectedGroup": true,
"OverrideServerIdCheck": false,
"GroupsCheckExcludedSync": [
"admin",
"testgroup"
],
"GroupsRemove": [
"moderator"
],
"PermissionsRust": 2,
"PermissionsOxide": [
"plugin.permission1",
"plugin.permission2"
],
"AdditionalCommands": [
"writecfg"
]
},
{
"CommandName": "gold",
"GroupName": "gvip",
"ExtendedPermissionHandling": true,
"PermissionUse": true,
"ProtectedGroup": false,
"OverrideServerIdCheck": false,
"GroupsCheckExcludedSync": [
"admin",
"testgroup"
],
"GroupsRemove": [
"moderator"
],
"PermissionsRust": 0,
"PermissionsOxide": [
"plugin.permission1",
"plugin.permission2"
],
"AdditionalCommands": [
"writecfg"
]
},
{
"CommandName": "serveradmin",
"GroupName": "serveradmin",
"ExtendedPermissionHandling": true,
"PermissionUse": true,
"ProtectedGroup": true,
"OverrideServerIdCheck": false,
"GroupsCheckExcludedSync": [
"admin",
"testgroup"
],
"GroupsRemove": [
"moderator"
],
"PermissionsRust": 2,
"PermissionsOxide": [
"plugin.permission1",
"plugin.permission2"
],
"AdditionalCommands": [
"writecfg"
]
},
{
"CommandName": "silver",
"GroupName": "svip",
"ExtendedPermissionHandling": true,
"PermissionUse": true,
"ProtectedGroup": false,
"OverrideServerIdCheck": false,
"GroupsCheckExcludedSync": [
"admin",
"testgroup"
],
"GroupsRemove": [
"moderator"
],
"PermissionsRust": 0,
"PermissionsOxide": [
"plugin.permission1",
"plugin.permission2"
],
"AdditionalCommands": [
"writecfg"
]
},
{
"CommandName": "bronze",
"GroupName": "bvip",
"ExtendedPermissionHandling": false,
"PermissionUse": true,
"ProtectedGroup": false,
"OverrideServerIdCheck": false,
"GroupsCheckExcludedSync": [
"admin",
"testgroup"
],
"GroupsRemove": [
"moderator"
],
"PermissionsRust": 0,
"PermissionsOxide": [
"plugin.permission1",
"plugin.permission2"
],
"AdditionalCommands": [
"writecfg"
]
}
]
}