Skip to content

Instantly share code, notes, and snippets.

View pihomeserver's full-sized avatar
🍏
Somewhere doing something

Pi Home Server pihomeserver

🍏
Somewhere doing something
  • Thionville, France
View GitHub Profile
@pihomeserver
pihomeserver / mysql
Created June 6, 2018 13:44
MySQL / MariaDB - Remote root access
Allow remote connection
1) As root user execute (replace password)
```
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password';
```
2) In file /etc/mysql/mariadb.conf.d/50-server.cnf comment line
```
#bind-address = 127.0.0.1
```