일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- python
- ubuntu
- PostgreSQL
- postgres
- 설치
- node
- 설정
- java
- 노드
- script
- DATABASE
- 3.0
- 파이썬
- Linux
- 자바
- Windows
- 스크립트
- 아틀라시안
- 자바스크립트
- hamonikr
- 하모니카
- 윈도우
- install
- 우분투
- Atlassian
- DB
- javascript
- JS
- 데이터베이스
- 리눅스
- Today
- Total
목록config (2)
LukeHan 의 잡다한 기술 블로그
버전 확인 python --version python -V 디렉토리 확인 ls -al /usr/bin/python 설치된 버전 확인 ls /usr/bin/ | grep python 버전 변경하기 sudo update-alternatives --config python update-alternatives: error: no alternatives for python 만약 위와 같이 에러가 발생하는 경우 설정된 alternatives 정보가 없다는 것이다. sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.9 1 update-alternatives: using /usr/bin/python3.9 to provide /usr/b..
문제점 mysql: [Warning] Using a password on the command line interface can be insecure. mysql 5.6 버전으로 올라가면서 패스워드 정보를 쉘 상태에서 입력하게 되면 위와 같이 에러 메세지가 발생된다 mysql 5.6 버전에 새로 생긴 mysql_config_editer 툴을 이용하여 로그인 파일을 저장해 놓고 해당 파일을 옵션으로 지정하여 사용해야 한다 사용법 # 생성 mysql_config_editor set --login-path=hamonitr --host=localhost --user=hamonitr --password # 확인 mysql_config_editor print --all # 사용 mysql --login-path=h..