Re: [Maria-discuss] MDB 10.4+Galera build's wsrep-lib/.../*.so libs are built, but not installed? what step's missing?

2019-08-01 Thread Sergei Golubchik
Hi, PGNet! On Jul 26, PGNet Dev wrote: > I'm building MDB 10.4/head on linux64 > > Galera's set up for build, following > > https://mariadb.com/kb/en/library/installing-galera-from-source/ How did you build, I mean, exact commands? I used `cmake . && make` as the page above says, and I

Re: [Maria-discuss] Question on ALTER USER

2019-08-01 Thread Sergei Golubchik
Hi, Sean! Use GRANT instead of ALTER USER before 10.2 GRANT USAGE ON *.* TO 'user1'@'localhost' WITH MAX_USER_CONNECTIONS 0; On Jul 30, Sean T Shen wrote: > Thanks. In this case, the way to control connections is through global > variables? > Such as this: SET GLOBAL max_connections = 500; >