- Today
- Total
- OpenFileDialog
- Spread
- ContextMenuStrip
- .mine
- MariaDB
- OSHP
- onPageFinished
- startActivity
- c#
- 라즈베리파이
- ScrollBarTrackPolicy
- 자동 닫힘
- Image icon 변환
- mp4 재생
- mariaDB 외부접속
- UltraToolbarsManager
- node.js
- RaspberryPi
- Raspberry Pi
- 다중 Filter
- ubuntu
- Ribbon
- WebViewClient
- node.js 설치
- 동영상 오류
- usb 인식 불가
- 라즈베리 피이
- <<<<<<<<
- mariaDB 설치
- ImageList Icon 변환
목록MariaDB (3)
Realman's World
# sudo wget -O /etc/apt/sources.list.d/repository.pi3g.com.list http://repository.pi3g.com/sources.list # wget -O - http://repository.pi3g.com/pubkey | sudo apt-key add -# sudo apt-get update # sudo apt-get upgrade # apt-get install mariadb-server * 참조 : http://www.enjoyteam.net/?p=336
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 실행 후 외부..
sudo apt-get install software-properties-common sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db Ubuntu 14.10 “utopic” . sudo add-apt-repository 'deb http://ftp.kaist.ac.kr/mariadb/repo/10.0/ubuntu utopic main' Ubuntu 14.04 “trusty” . sudo add-apt-repository 'deb http://ftp.kaist.ac.kr/mariadb/repo/10.0/ubuntu trusty main' Ubuntu 12.04 LTS “precise” . sud..