WTMO-dev
AI
CV
basic
DL
basic
ML
basic
NLP
basic
dspy
hugging face
llama index
ollama
C++
basic
COMPUTER SCIENCE
basic
ETC
GIT
Blog
basic
IDE
VSC
python
setting
JAVA
basic
MATH
Basic
Statistic
NETWORK
basic
OS
Window
WSL
basic
basic
PROJECT
PYTHON
Advance
Basic
Framework
Django
FastAPI
Library
Module
Home
PROJECT PRACTICE
Crawling
EDA
Kaggle
Python
CV
Contact
Copyright © 2024
WTMO-dev
Home
> ETC
Now Loading ...
ETC
redis
what is redis 우dd How to install redis 우dd Window wsl을 설정 후 wsl에서 세팅이 가능합니다. 설치 {% highlight shell %} curl -fsSL https://packages.redis.io/gpg | sudo gpg –dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg echo “deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb $(lsb_release -cs) main” sudo tee /etc/apt/sources.list.d/redis.list sudo apt-get update sudo apt-get install redis {% endhighlight %} 실행 {% highlight shell %} sudo service redis-server start {% endhighlight %} 동작확인 {% highlight shell %} redis-cli ping {% endhighlight %}
ETC
· 2024-02-21
mysql password
How to change password in mysql {% highlight shell %} mysql.server stop # mysql 종료 {% endhighlight %} {% highlight shell %} mysql.server start –skip-grant-tables # mysql 권한없이 접근 허용 {% endhighlight %} {% highlight shell %} mysql -u root # mysql root로 접근 {% endhighlight %} {% highlight shell %} update mysql.user set authentication_string=null where user=’root’; # 임시로 password 삭제 flush privileges; # 권한 적용 {% endhighlight %} {% highlight shell %} mysql.server restart; # mysql 재실행 {% endhighlight %} {% highlight shell %} mysql -u root; # mysql 접근 {% endhighlight %} {% highlight shell %} alter user ‘root’@’localhost’ identified with caching_sha2_password by ‘'; # 비밀번호 변경 {% endhighlight %} 권한 문제로 안될때 {% highlight shell %} SHOW VARIABLES LIKE ‘validate_password%’; # 권한 확인 SET GLOBAL =; # 권한 변경 {% endhighlight %}
ETC
· 2023-02-23
<
>
Touch background to close