일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- c3 step graph
- CentOS7
- g++ 업데이트
- subporcess path
- grafana dashboard
- regex_search
- c3 축 가리기
- snmp
- 정규식 활용
- python subprocess
- gcc regex
- centos pyhon 설치
- telegraf
- selinux port 등록
- gcc 업데이트
- 1697
- c3 축 없애기
- 백준
- linux시간으로 변경
- python os
- 정규식 컴파일
- c3 second
- python popen
- c++ 정규식
- semanage
- 정규식 문자열 출력
- InfluxDB
- c3 초
- snmp test
- influxdb 설치
- Today
- Total
목록Database (7)
리셋 되지 말자
use company db.createUser({ user: 'master', pwd: 'password!', roles: [{ role: 'readWrite', db: 'company' }] }) db.createCollection('employees') db.updateUser("master", { roles: [{ role: 'readWrite', db: 'company' }, { role: 'clusterAdmin', db: 'admin' }] })
참고사이트 - https://stackoverflow.com/questions/13814413/how-to-auto-login-in-mysql-from-a-shell-script id, password로 접속해야할 때 -p 옵션을 이용하면 계속 패스워드를 입력해야 하는 상황이 있다. mysql -uroot -hdb-dns-name -p -e "show databases;" Enter password: 이때 접속하는 유저의 홈 디렉토리에 .my.cnf 파일을 작성하면 패스워드 입력 없이 자동으로 로그인이 가능하다. 이때는 -p 옵션 없이 사용해야 한다. [client] user=root password=password
파이썬에서 postgres 사용하기 django를 docker로 묶어서 사용하려는데, python에서 postgres를 사용하려면 추가 패키지가 필요. 그 중에서도 psycopg2를 설치하라고 경고문구가 나오고, psycopg2를 설치하면 psycopg2는 곧 psycopg3로 이전될 것이니, psycopg2-binary를 설치하라고 나온다. 친절히 설치방법이 있는 링크도 알려준다... pip install psycopg2-binary 링크 : https://www.psycopg.org/docs/install.html#binary-install-from-pypi Django와 postgres를 묶어서 사용하는 방법 링크 : https://docs.docker.com/samples/django/
에러 문구 Error: ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client 해결 방안 alter user 'Open'@'%' identified with mysql_native_password by '비밀번호'; flush privileges; 분명 계정 생성할 때는 아래 명령어로 진행을 했는데, create user 'Open'@'%' identified by '비밀번호'; 해결방안대로 하니까 해결됨... 머야 이게 ;; https://dba.stackexchange.com/questions/209514/what-is-mysq..
버전확인 [mysqluser@localhost ~]$ mysql -V mysql Ver 8.0.21 for Linux on x86_64 (MySQL Community Server - GPL) 명령어 SET GLOBAL validate_password.policy=LOW; 5.7 쓸때는 .이아니고 _ 였는데 ;; 해맴....
https://jbluewing.tistory.com/entry/MySQL-JDBC-INSERT-%EC%8B%9C-AUTO-INCREMENT-%EA%B0%92%EC%9D%84-%EC%95%8C%EC%95%84%EB%82%B4%EB%8A%94-%EC%98%88%EC%A0%9C
https://ammff.tistory.com/96