You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After I created it locally with dolt init, I have modified the database Then use the dolt. Add dolt commit -m "" remote add orange http://192.168.5.55:3000/database/testdatabases then use dolt An error occurred in push.
That is, push to self-hosting failure, report an error:
| Uploading... failed to get remote db; The remote: orange 'http://192.168.5.55:3000/database/testdatabases' could not be accessed; Could not access dolt url 'http://192.168.5.55:3000/database/testdatabases' : RPC error: code = Unavailable desc = connection error: desc = "error reading server preface: http2: frame too large"
How to solve it?
The text was updated successfully, but these errors were encountered:
@2331892928 as @timsehn mentioned the DoltLab gRPC port in the remote addresses you shared is incorrect. It should be 50051, not 3000, so your remote url should be http://192.168.5.55:50051/database/testdatabases instead. Your host does not need to have port 3000 open, and should instead open port 50051.
Also the remote url for your instance should be displayed on the empty database page, like so:
You'll see the website is running on port 443 (the default https port) but the remote api that push/pull from is running on 50051. That is the default port for DoltLab so I suspect something like:
dolt remote add foo http://192.168.5.55:50051/database/testdatabases
dolt push foo main
After I created it locally with dolt init, I have modified the database Then use the dolt. Add dolt commit -m "" remote add orange http://192.168.5.55:3000/database/testdatabases then use dolt An error occurred in push.
That is, push to self-hosting failure, report an error:
| Uploading... failed to get remote db; The remote: orange 'http://192.168.5.55:3000/database/testdatabases' could not be accessed; Could not access dolt url 'http://192.168.5.55:3000/database/testdatabases' : RPC error: code = Unavailable desc = connection error: desc = "error reading server preface: http2: frame too large"
How to solve it?
The text was updated successfully, but these errors were encountered: