Notice
- Today
- Total
Recent Posts
Recent Comments
Link
Tags
- UltraToolbarsManager
- ScrollBarTrackPolicy
- 다중 Filter
- ImageList Icon 변환
- OSHP
- 라즈베리파이
- node.js 설치
- mariaDB 설치
- OpenFileDialog
- RaspberryPi
- node.js
- Image icon 변환
- 라즈베리 피이
- Raspberry Pi
- onPageFinished
- mp4 재생
- startActivity
- WebViewClient
- mariaDB 외부접속
- ubuntu
- MariaDB
- 자동 닫힘
- ContextMenuStrip
- c#
- Ribbon
- .mine
- usb 인식 불가
- <<<<<<<<
- Spread
- 동영상 오류
Archives
Realman's World
mariaDB 외부접속 설정 본문
mysql -u root -p
[mariaDB prompt]
create database test;
use test;
create user 'testuser'@'localhost' identified by '1q2w3e';
create user 'testuser'@'%' identified by '1q2w3e'; -> 외부접속시 %로 설정
grant all privileges on test.* to 'testuser'@'localhost';
grant all privileges on test.* to 'testuser'@'%';
flush privileges;
exit
sudo vi /etc/mysql/my.cnf
#bind-address = 127.0.0.1 -> 주석 처리
mariaDB 실행 후 외부접속하면 정상 접속
참조 : http://ora-sysdba.tistory.com/43
Comments