일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Oracle
- Data and Time Functions
- String Functions and Operators
- Date and Time Function
- String Functions and Date Operators
- HTTP
- Tibero
- SVN
- 윈도우
- 전자정부표준프레임워크
- Date and Time Functions
- Sring Functions and Operators
- 오라클
- MySQL
- String Function and Operators
- 전자정부 표준프레임워크
- 티베로
- 방화벽
- Today
- Total
목록MySQL (149)
웹이야기
MySQL 버전 확인하는 방법 1. 쿼리 mysql>select version(); +-----------+ | version() | +-----------+ | 8.0.18 | +-----------+ 1 row in set (0.00 sec) 2. 콘솔상에서 로그인 - 윈도우나 리눅스 모두 상관없이 로그인을 하면 버전 정보가 나온다. C:\mysql-5.7.28-winx64\bin>mysql -uroot -p Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 376 Server version: 8.0.18 Source distribution Copyright (c) 2000, 2019, Oracle ..
리눅스 환경에서 MySQL을 이용하다가 빠져나오는 방법 mysql>quit; mysql>\q mysql>Ctrl +D
1. MySQL 다운로드 - 다운로드는 아래 URL을 참조한다. https://webobj.tistory.com/33 MySQL 5.7 다운로드 윈도우용 MySQL installer 버전을 다운로드 받기 위해서는 아래 URL로 이동한다. https://downloads.mysql.com/archives/installer/ MySQL :: Download MySQL Installer (Archived Versions) Please note that the.. webobj.tistory.com 2. 다운로드 받은 파일의 압축을 풀어서 적당한 위치에 놓는다. - 편의상 C:\ 에 놓아두었다. 3. 도스 창을 열어서 mysqld를 쳐본다. - c:\>cd C:\mysql-5.7.28-winx64\bin - C:..
윈도우용 MySQL installer 버전을 다운로드 받기 위해서는 아래 URL로 이동한다. https://downloads.mysql.com/archives/installer/ MySQL :: Download MySQL Installer (Archived Versions) Please note that these are old versions. New releases will have recent bug fixes and features! To download the latest release of MySQL Installer, please visit MySQL Downloads. MySQL open source software is provided under the GPL License. downlo..
Password Expiration Policy 패스워드 만료 정책 아래와 같은 쿼리를 날리면 패스워드가 만료가 된다. mysql> ALTER USER 'aaaa'@'localhost' PASSWORD EXPIRE ; mysql.user system table 에 password_expired 가 Y로 변경되어 있다. 자동으로 만료가 되도록 설정 (가장 최근 passoword가 변경된 것을 기준으로 자동으로 만료가 되도록 설정할 수 있다. ) my.cnf(윈도우는 my.ini)에 default_password_lifetime=180 으로 설정해줄 수 있다. 180일 뒤에 만료가 된다. 만료가 되지 않도록 설정할 수도 있다. default_password_lifetime=0 값을 0으로 설정하면 만료가 되..
MySQL 계정생성 및 권한 부여 mysql> CREATE USER 'aaaa'@'localhost' IDENTIFIED BY 'password'; mysql> GRANT ALL ON *.* TO 'aaaa'@'localhost' WITH GRANT OPTION; mysql> GRANT ALL ON DB.TABLE TO 'aaaa'@'localhost' WITH GRANT OPTION; mysql> GRANT ALL ON bankaccount.* TO 'aaaa'@'localhost' ; 부여된 권한 보기 mysql> SHOW GRANT FOR 'aaaa'@'localhost'; 부여되지 않은 권한 보기 mysql> SET print_identified_with_as_hex=ON mysql> SHOW C..
Privileges Provided by MySQL 1) Administrative privileges 2) Database Privileges 3) Privileges for database object such as tables, indexes, view, stored routines 또 static Privileges 와 dynamic Privileges 로도 나뉘어진다. 라고 한다. 자세한 내용은 아래에. https://dev.mysql.com/doc/refman/8.0/en/privileges-provided.html MySQL :: MySQL 8.0 Reference Manual :: 6.2.2 Privileges Provided by MySQL MySQL 8.0 Reference Manual..
user names are up to 32 character long. 32글자까지이다. MySQL 에서 사용자를 생성할 때 이름은 32글자까지이다.
MySQL 8.0.18 설치 MySQL 5.7.28 도 동일하게 설치를 진행해도 잘 되었다. 요약본 #yum -y install cmake #yum -y install git #yum -y install openssl #yum -y install openssl-devel #yum -y install libtirpc #yum -y install libtirpc-devel #yum -y --enablerepo=PowerTools install rpcgen #yum -y install ncurses-devel #groupadd mysql #useradd -M -g mysql -s /bin/false mysql #cat /etc/group #cat /etc/passwd #cd /usr/local/src #wge..