lua
box.cfg {
listen = '0.0.0.0:3301',
replication = {'replicator:password@192.168.0.2:3301', 'replicator:password@192.168.0.3:3301'},
}
box.cfg {
listen = '0.0.0.0:3302',
replication = {'replicator:password@192.168.0.1:3301'},
}
box.once('bootstrap', function()
local space = box.schema.space.create('my_space')
space:format({{name = 'id', type = 'integer'}, {name = 'name', type = 'string'}})
space:create_index('primary', {type = 'tree', unique = true, parts = {1, 'integer'}})
end)