일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- jboss
- 줌 채팅
- wildfly
- zoom api
- mysql
- tomcat
- 줌 녹화
- apache openmeetings
- 명령어
- postgresql
- 웹화상회의
- 아파치 오픈미팅
- zoom OkHttp
- zoom 서버통신
- 아파치 openmeetings
- db
- 화상회의
- zoom
- ubuntu
- 리눅스
- 데이터베이스
- centos
- AWS
- JSP
- openmeetings
- java
- zoom OkHttpClient
- centos7
- 줌 개발
- zoom sdk
- Today
- Total
목록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..
1. postgresql 명령어 sudo systemctl status postgresql.service 서비스 상태 확인 sudo systemctl start postgresql.service 서비스 시작 sudo systemctl stop postgresql.service 서비스 중지 sudo service postgresql stop 서비스 중지 sudo systemctl restart postgresql.service 서비스 재 시작 sudo systemctl enable postgresql.service 서비스 자동 시작 sudo systemctl disable postgresql.service 서비스 자동 시작 중지 2.mysql 명령어 sudo systemctl status mysqld ..
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..