일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- postgresql
- wildfly
- 명령어
- apache openmeetings
- 화상회의
- 줌 채팅
- openmeetings
- 아파치 오픈미팅
- 줌 개발
- java
- centos
- 리눅스
- JSP
- tomcat
- jboss
- mysql
- 웹화상회의
- 아파치 openmeetings
- zoom OkHttpClient
- zoom api
- zoom 서버통신
- ubuntu
- zoom
- zoom sdk
- zoom OkHttp
- 데이터베이스
- centos7
- db
- 줌 녹화
- AWS
- Today
- Total
목록DB/mysql (5)
StartIT
use mysql; select user, host from user; //유저 정보 확인 create user 'id'@'localhost' identified by 'password'; //로컬 접속 유저 create user 'id'@'%' identified by 'password'; //모든ip 허용 유저 create user 'id'@'ip주소' identified by 'password'; //특정ip 허용 유저 drop user 'id'@'%'; //유저 삭제 grant all privileges on *.* to 'id'@'%'; //유저에게 모든db 권한 부여 grant all privileges on db명.* to 'id'@'%'; //유저에게 특정db 권한 부여 flush priv..
create user '아이디'@'localhost' identified by '패스워드'; 로 계정 생성함 https://zero-gravity.tistory.com/274 참고하면서 grant all privileges on *.* to '아이디'@'%'; 로 권한 부여 -> ssh Secure shell로 mysql 명령어를 통한 접속이 denined grant all privileges on *.* to '아이디'@'localhost'; 로 권한 추가 부여 -> ssh Secure shell로 mysql 명령어를 통한 접속 ok tableplus를 통한 접속(ssh설정을 해주면 되고, ssh없이 바로 접속은 실패) 이후 jdbc를 통한 tomcat과 mysql 연동 과정에서 mysql 접속이 ..
1)mysql 설치(5.6) rpm -Uvh http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm 명령어로 리눅스 서버에서 다운로드 및 repository 추가 yum repolist 로 저장소 확인 1-2) mysql 패키지 설치 yum -y install mysql-community-server yum으로 mysql 패키지 설치 2)mysql 설정 my.cnf 설정 파일 변경 vi /etc/my.cnf 에 아래내용 입력 [client] default-character-set = utf8 [mysqld] character-set-client-handshake=FALSE init_connect="SET collation_conne..
jdbc - mysql mysql jdbc diver파일을 다운로드 후 java폴더/lib/ext폴더로 이동 alternatives --config java 치면 자바 경로 확인 가능 The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the 'serverTimezone' configuration property) to use a more specifc time zone value if you want to utilize time zone support. 에러 발생시 서버 타임존 설정해야함 jdb..