Mudanças entre as edições de "MariaDB"

De MochilaWiki
Ir para navegaçãoIr para pesquisar
 
Linha 19: Linha 19:
 
* [https://downloads.mariadb.org/mariadb/repositories/#mirror=edatel&distro=Debian&distro_release=wheezy--wheezy&version=10.1 fonte]
 
* [https://downloads.mariadb.org/mariadb/repositories/#mirror=edatel&distro=Debian&distro_release=wheezy--wheezy&version=10.1 fonte]
  
 +
 +
== Desabilitando plugin de autenticação ==
 +
<source lang="mysql">
 +
use mysql;
 +
update user set plugin='' where User='root';
 +
grant all privileges on *.* to 'root'@'127.0.0.1' identified by '$STRONG_PASSWORD';
 +
flush privileges;
 +
</source>
 +
 +
e reinicia o serviço
 +
<source lang="bash">
 +
service mysql restart
 +
</source>
 +
 +
Trocando a senha de root
 +
<source lang="mysql">
 +
SET PASSWORD FOR 'root'@'localhost' = PASSWORD('new_password');
 +
</source>
 +
 +
Referências
 +
* https://levlaz.org/remote-root-access-for-mariadb-on-ubuntu-16-04-lts/
 +
* https://www.digitalocean.com/community/tutorials/how-to-reset-your-mysql-or-mariadb-root-password
  
 
== Pesquisa ==
 
== Pesquisa ==
 
* [http://imasters.com.br/noticia/mariadb-galera-cluster-esta-pronto-para-uso-em-producao/ MariaDB Galera Cluster está pronto para uso em produção]
 
* [http://imasters.com.br/noticia/mariadb-galera-cluster-esta-pronto-para-uso-em-producao/ MariaDB Galera Cluster está pronto para uso em produção]

Edição atual tal como às 19h45min de 15 de abril de 2019

Pagina do projeto

Em Debian Wheezy

adiciona chave e repositório

sudo apt-get install python-software-properties
sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xcbcb082a1bb943db
sudo add-apt-repository 'deb [arch=amd64,i386] http://mirror.edatel.net.co/mariadb/repo/10.1/debian wheezy main'

instalando

sudo apt-get update
sudo apt-get install mariadb-server


Desabilitando plugin de autenticação

use mysql;
update user set plugin='' where User='root';
grant all privileges on *.* to 'root'@'127.0.0.1' identified by '$STRONG_PASSWORD';
flush privileges;

e reinicia o serviço

service mysql restart

Trocando a senha de root

SET PASSWORD FOR 'root'@'localhost' = PASSWORD('new_password');

Referências

Pesquisa