I'm trying to use mysql-proxy to substitute auth credentials like this:
proxy.queries:append(1,
proto.to_response_packet({
username = "connect",
response = password.scramble(s.scramble_buffer, password.hash("cpass!1")),
charset = 8, -- default charset
database = c.default_db,
max_packet_size = 1 * 1024 * 1024
})
)
And it's failing with this error:
(critical) (read_auth) [string "/home/aabbcc/test.lua"]:51: .server_capabilities has to be set
How do I set ".server_capabilities" correctly?
The examples/tutorial-scramble.lua file has a lot of problems - I think it is out of date with the current mysql-proxy. You'll need some constants and another parameter for the proto.to_response_packet call:
Thanks due to this GitHub project for the constants - https://github.com/obrun/map-schema/blob/master/map-schema.lua
After this, you'll probably get another error like this:
For some reason, the scramble buffer is longer than it should be - if you print it out you'll see nulls at the end - we need to trim it down to 20 chars before we can use it: