일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- IntelliJ
- Spring Boot
- SpringBoot
- MySQL
- oracle
- maven
- JavaScript
- Eclipse
- git
- ubuntu
- jpa
- Python
- Core Java
- error
- 오픈소스
- Open Source
- spring
- Exception
- Docker
- PostgreSQL
- 문서
- Tomcat
- STS
- myBatis
- Thymeleaf
- JDBC
- 설정
- Source
- AJAX
- MSSQL
- Today
- Total
목록MySQL (16)
헤르메스 LIFE
IDE : IntelliJJDK : OpenJDK 11Framework : Spring Boot 2.5.2Database : MySql 최신버전 ( Oracle 에 라이센스비를 지급해야 하고, 소스공개의 의무가 존재함 ) Maria 최신버전 ( 소스공개의 의무가 존재함 )Docker 설치https://hermeslog.tistory.com/497?category=302346 [Docker] Docker의 설치Docker의 설치 참조 : docs.microsoft.com/ko-kr/windows/wsl/tutorials/wsl-containers Linux 용 Windows 하위 시스템에서 Docker 컨테이너 사용 시작 Linux 용 Windows 하위 시스템에서 Docker 컨..
설치 환경 Ubuntu 22.04.3 LTS Postgresql 최신 ( en_US.utf8 버전 ) Postgresql 14.1 ( ko_KR.utf8 버전 ) Redis 최신 MySQL 최신 1. Docker 설치 # 우분투 시스템 패키지 업데이트 $ sudo apt-get update # 필요한 패키지 설치 $ sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common # Docker의 공식 GPG키를 추가 $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - # Docker의 공식 apt 저..
MySQL에는 PASSWORD(str)이란 함수가 있습니다. MySQL에는 OLD_PASSWORD()와 PASSWORD()로 나누어져있습니다. MySQL 4.1이전에 사용하던 OLD_PASSWORD() 함수와 이후에 사용하는 PASSWORD()란 함수 입니다. 사용할 일이 있을 지... 혹시 몰라 크롤링(?) 해둡니다. 소스를 오픈해주신 분들께 감사드립니다. 1. PASSWORD 함수 소스 import java.security.GeneralSecurityException; import java.security.MessageDigest; import org.springframework.security.crypto.password.PasswordEncoder; /** * MySql의 password() 알고..
MySQL 최신버전(8.0 이후) 접속 시 아래와 같은 오류가 발생하였습니다. allowPublicKeyRetrieval=true 설정을 추가해주어야 한다고 합니다. jdbc:mysql://localhost:3306/springboot?allowPublicKeyRetrieval=true 더보기 java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:110) ~[mysql-connector-java-8.0.25.jar:8.0.25] at com.mysql.cj.jdbc.exceptions..
1. MySQL Connection (venv) C:\JetBrains\pythonProject\venv\Scripts>pip install mysql-connector-python Collecting mysql-connector-python Downloading mysql_connector_python-8.0.23-py2.py3-none-any.whl (379 kB) |████████████████████████████████| 379 kB 939 kB/s Collecting protobuf>=3.0.0 Downloading protobuf-3.15.3-py2.py3-none-any.whl (173 kB) |████████████████████████████████| 173 kB 6.4 MB/s Col..
MySQL comment 설정 및 조회 Database 목록 조회 -- Database 목록 조회 SHOW DATABASES; Table 정보조회 (with comment) -- 테이블 목록 조회 SHOW TABLES; -- 'springboot' 계정의 'Product' 테이블 정보 SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'springboot' AND TABLE_NAME = 'Product' ; COLUMN 정보조회 (with comment) show columns from 테이블명; -- Product 테이블 컬럼정보 show columns from Product; /* Query를 통한 테이블정보 조회 */ SELECT TABLE..
1 mysqld 중지 [root@localhost ~]# service mysqld stop Stopping MySQL: [ OK ] 2 mysqld_safe 실행 인증 생략 옵션 + 안전모드로 데몬 실행 /usr/bin/mysqld_safe --skip-grant & /usr/bin/mysqld_safe --skip-grant-tables & [root@localhost ~]# /usr/bin/mysqld_safe --skip-grant-tables & [1] 32055 Starting mysqld daemon with databases from /var/lib/mysql → 이제 패스워드 없이 mysql에 접속할 수 있게 되었다.[1] 3 새 패스워드 지정 mysql 콘솔로 들어가자.[2] /usr/..
출처 : http://articles.slicehost.com/2009/4/7/centos-installing-mysql-with-rails-and-php-options Installing MySQL on CentOS is very simple using the 'yum' package manager.This article will go through the install process and also look at what other packages are needed for MySQL to integrate with Ruby on Rails and with a standard PHP install.MySQL InstallTo begin with, a simple MySQL install:sudo yu..
출처 : http://www.mysqlkorea.com/gnuboard4/bbs/board.php?bo_table=develop_03&wr_id=67 - MariaDB (http://mariadb.com) - (1) 소개 MySQL 개발자 미카엘 위데니우스에 의해 만들어진 MariaDB는 MySQL이 MariaDB의 모태이며, Sun에서 가져온 DataBase입니다. 그러므로 MySQL과 흡사합니다. (2) MariaDB 다운로드 https://downloads.mariadb.org/mariadb/repositories/ (3) 설치 컴파일버전이 아닌 보다 high performance인 바이너리버전(64bit)으로 설치하겠습니다. OS = CentOS 5.4MariaDB버전 = mariadb-5.1.4..