일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- android
- java
- MySQL
- NGINX
- 개발
- caddy
- unity
- kakao
- it
- 한글
- techEmpower
- 프래그먼트
- C lanuage
- server
- H2O
- 컴퓨터과학총론
- 안드로이드
- ubuntu
- php
- 자바
- mariadb
- 개발자
- 번역
- Portfolio
- C
- 구글
- javascript
- centOS7
- 해석
- error
- Today
- Total
목록DB/RDBMS (27)
개발모음집

연결 세팅창을 켠 다음, shemas 탭에서 All schemas를 눌러주거나 current schema를 눌러준다.
MySQL server has gone awayLost connection to MySQL server at 'reading initial communication packet', system error: 102 mysql restart해주면 됨
8.0 부터 생긴 이슈 ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password' 출처 :https://stackoverflow.com/questions/50093144/mysql-8-0-client-does-not-support-authentication-protocol-requested-by-server

설치 $ wget -c https://repo.mysql.com//mysql-apt-config_0.8.13-1_all.deb $ sudo dpkg -i mysql-apt-config_0.8.13-1_all.deb $ sudo apt update $ sudo apt-get install mysql-server $ sudo mysql_secure_installation $ mysql -u root -p 출처 :https://www.tecmint.com/install-mysql-8-in-ubuntu/ security는 아래의 글을 참고하였음. root는 원격접속 불가하게 하기위해서 n으로 설정 출처 : https://whitepaek.tistory.com/16 계정 추가 $ create user '사용자'@..
보호되어 있는 글입니다.
보호되어 있는 글입니다.
보호되어 있는 글입니다.
앱을 만들다가 JavaSocket에서 PostgreSQL과 jdbc로 연결하기로 하였다. 1. postgresql 홈페이지에서 jdbc driver(postgresql-42.2.2.jar)를 다운받는다. 2. /usr/lib/jvm/java-8-openjdk-amd64/lib에 jar 파일을 옮긴다. 3. 컴파일할 때 자바파일이 있는 경로( ex> /var/www/html/serverSocket/)에서 컴파일과 빌드를 하면 된다. 컴파일 ( '' 와 : 는 빼면 안된다)$ javac -cp ':(postgresql-42.2.2.jar가 있는 경로)' java 파일명ex)$ javac -cp ':/usr/lib/jvm/java-1.8.0-openjdk-amd64//lib/postgresql-42.2.2.j..