SW 프로그래밍/Mariadb20 사용자만들기 사용자 만들기 사용자 이름 jb, 내부에서만 접속 가능, 비밀번호 1234 MariaDB [(none)]> create user 'jb'@'localhost' identified by '1234'; Query OK, 0 rows affected (0.00 sec) 사용자 이름 jb, 어디에서나 접속 가능, 비밀번호 1234 MariaDB [(none)]> create user 'jb'@'%' identified by '1234'; Query OK, 0 rows affected (0.00 sec) 사용자 목록 보기 mysql 데이터베이스 사용 MariaDB [(none)]> use mysql; Host, User 출력 MariaDB [mysql]> select Host, User from user; +--.. 2020. 9. 13. MariaDB UTF8 설정 먼저 MariaDB에 접속하여 DB 입출력 문자 집합을 알아봅시다. MariaDB에 root 계정으로 접속하는 명령어는 다음과 같습니다. ~$ mysql -u root -p //접속후 show variables like 'c%'; root 계정의 암호를 입력하면 다음과 같이 MariaDB에 접속됩니다. (처음설치후 root 암호가 미설정되었을때는 : http://magic.wickedmiso.com/104) MariaDB [(none)]> show variables like 'c%'; +----------------------------------+----------------------------+ | Variable_name | Value | +-------------------------------.. 2020. 9. 13. CentOS8. MariaDB 설치하기 MariaDB 설치 기본적으로 Linux yum repository에는 MariaDB가 등록되어 있지 않다고 합니다. 버전마다 달라서 그런거 같기는 합니다. 이곳에 가면 자신의 OS에 맞게 세팅하는 방법이 나와 있습니다. https://downloads.mariadb.org/mariadb/repositories/ MariaDB - Setting up MariaDB Repositories - MariaDB To generate the entries select an item from each of the boxes below. Once an item is selected in each box, your customized repository configuration will appear below. 1. .. 2020. 9. 13. MariADB 외부 접속 하기 MySQL 접속합니다. [ root@localhost ~]# mysql -u root -p Enter password: 접속을 완료하면 아래와 같은 화면이 나옵니다. Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 7 Server version: 5.7.27 MySQL Community Server (GPL) Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other nam.. 2020. 6. 2. MariaDB 명령어 ■ Mysql 데몬 start 하기 # /usr/local/mysql/bin/mysqld_safe & 또는 # /usr/local/mysql/share/mysql/mysql.server start ■ Mysql 데몬 stop 하기 # /usr/local/mysql/bin/mysqladmin -uroot shutdown 또는 # /usr/local/mysql/share/mysql/mysql.server stop ■ Mysql 접속 방법 형식 : mysql -u 사용자 -p 사용DB 예제) # /usr/local/mysql/bin/mysql -u root -p mysql Enter password: -> 초기 세팅후 비밀번호가 지정되지 않은경우는 엔터 또는 # /usr/local/mysql/bin/mysql.. 2020. 6. 2. MySQL root password reset 하기(Centos) Linux&Un*x --init-file 옵션 사용 mysqld 를 구동할 수 있는 계정(ex: mysql or root) 으로 login 한다. MySQL 서버를 중지한다. service mysql stop 에디터에서 루트 암호를 초기화하는 SQL 파일을 만들고 /var/lib/mysql/mysql-pwd-init.sql 으로 저장한다. MySQL 5.7 이상 UPDATE mysql.user set authentication_string=PASSWORD("MyNewPass"), password_expired='N', plugin='mysql_native_password' where User='root'; flush privileges 5.7 부터는 auth plugin 이 도입되어 auth_socket.. 2019. 6. 17. 이전 1 2 3 4 다음