Here is your custom MariaDB YUM repository entry for CentOS. Copy and paste it into a file under /etc/yum.repos.d/ (we suggest naming the file MariaDB.repo or something similar).
VI 로 해당 파일 만든다
vi /etc/yum.repos.d/mariaDB.repo
#
MariaDB 5.5 CentOS repository list - created 2014-12-16 08:14 UTC#
http://mariadb.org/mariadb/repositories/ [mariadb] name = MariaDB baseurl = http://yum.mariadb.org/5.5/centos7-amd64 gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck=1
저장 !wq
After the file is in place, install MariaDB with:
sudo yum install MariaDB-server MariaDB-client
끝
1. MySQL(Maria DB) 로 접속 한다.
2. use mysql 명령어를 입력한다.
3. grant all privileges on *.* to 'root'@'%' identified by '비밀번호'; 입력한다.
4. flush privileges; 입력한다.
5. my.cnf 파일 내용중에서 bind-address =127.0.0.1 을 주석(#)처리 하고 저장한다.
bind-address = 127.0.0.1 => #bind-address = 127.0.0.1
정리
- mysql 서버 로그인하기
$ mysql -uroot -prootpassword mysql
- 다른 PC에서 mysql 서버로 접속을 하기 위한 사용자 추가
mysql> create user 'nayha'@'%' identified by 'password';
GRANT ALL PRIVILEGES ON salesman.* TO dbuser@IP IDENTIFIED BY '패스워드' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON imidb.* TO dbuser@localhost IDENTIFIED BY '패스워드' WITH GRANT OPTION;
- 위 사용자에게 모든 것을 할 수 있는 권한 주기
mysql> grant all privileges on *.* to 'nayha'@'%';
- 위 사용자에게 특정 DB를 관리할수 있는 권한 주기
mysql> grant all privileges on dev_test.* to 'nayha'@'%';
mysql> grant all privileges on salesman.* to 'nayha'@'%';
- 로컬PC에서 mysql로 접속하기 위한 사용자 추가
mysql> create user 'local'@'localhost' identified by 'userpassword';
- 위 사용자에게 모든 것을 할 수 있는 권한 주기
mysql> grant all privileges on *.* to 'userid'@'localhost';
- 위 사용자에게 특정 DB를 관리할 수 있는 권한 주기
mysql> grant all privileges on dbname.* to 'userid'@'localhost';
':::: 개발 :::: > └ CAFE24 호스팅' 카테고리의 다른 글
클라우드 ssh 접속 할때 ssh key 관리 (0) | 2020.09.13 |
---|---|
구름 클라우드에서 호스팅 받는곳으로 접속방법 (0) | 2017.12.07 |
resin 3 error code 로 page 이동 (0) | 2015.05.15 |
디지털 오션 센토스(CentOs) JDK & tomcat 설치 정리 (0) | 2014.12.16 |
디지탈오션 프로모션 코드 무료 2달 digitalocean-coupon-codes (0) | 2014.12.11 |
디지털오션 mariaDB 외부 접속 가능하게.. (1) | 2014.12.10 |
디지털오션 mariaDB (mysql ) 설치하기.. (0) | 2014.12.10 |
해외 클라우드 디지털오션 사용하기(프로모션 코드) (0) | 2014.12.09 |