wget curl 과 유사하지만 curl 처럼 다양한 프로토콜과 많은 기능을 지원하지 않고 파일 받는 기능에 특화되어 사용 쉽다. 1. 설치 ubuntu sudo apt install wget mac brew install wget 2. 활용 (1) 다운로드 wget https://go.dev/dl/go1.20.7.darwin-arm64.tar.gz ubuntu@dev1990 ~ $ wget https://go.dev/dl/go1.20.7.linux-amd64.tar.gz --2023-08-11 16:13:13-- https://go.dev/dl/go1.20.7.linux-amd64.tar.gz Resolving go.dev (go.dev)... 216.239.36.21, 216.239.34.21, 21..
쟌's Blog
ubuntu@dev1990 mattermost (master) $ git push Enumerating objects: 8, done. Counting objects: 100% (8/8), done. Delta compression using up to 8 threads Compressing objects: 100% (4/4), done. Writing objects: 100% (5/5), 1.67 KiB | 21.00 KiB/s, done. Total 5 (delta 3), reused 2 (delta 1), pack-reused 0 remote: Resolving deltas: 100% (3/3), completed with 3 local objects. To https://github.com/Lim..
시간 정말 빠르고 요즘 회사에서 많이 바쁘다. 기존의 서비스를 거의 새롭게 하는 프로젝트를 진행하고 있다. 기존의 Front vue -> react로 변경 중이고 맡은 업무가 백엔드라 Django에 있는 API를 Gin으로 컨버팅 및 새롭게 필요한 API를 개발하는 중이다. 기존에는 Vue, Django, Gin 세 개를 봤었는데 최근에는 Django, Gin 만 보는 중.. (백엔드만 집중적으로 하는 중) 여전히 회사에서 혼자 생각하는 시간, API 작업량이 많기는 한데 개발에 관한 지식면에서는 매우 만족스럽다. Gin framework에 대해 많이 알았고, Go 언어도 많이 친숙해졌다. 이직을 한다면 Go 언어를 사용하는 회사로 가려고 하고, Rust 도 조금씩 볼까 고민 중이다. 올해 초에 운동, ..
FortiClient 더 이상 쓸 필요가 없을 것 같아서 지우려고 했더니 안 지워진다. 항목이 잠겨있다고.. 당연히 자연스럽게 Iterm 열고 rm 으로 지우려고했는데 rm results in "operation not permitted" 이번엔 다른 에러.. 이렇게 해주면 된다. 잠금상태 풀어주는 명령어 $ cd /Applications $ sudo chflags -hv noschg FortiClient.app $ rm -rf FortiClient.app
ubuntu 20.04 postgreSQL 설치 방법 1 ) apt update ubuntu@dev1990:~$ sudo apt update 2) postgresql install (extension을 위해서 postgresql-contrib install ) ubuntu@dev1990:~$ sudo apt install postgresql-14 postgresql-contrib 3) systemctl status postgresql.service (설치 확인 및 서비스 확인) ubuntu@dev1990:~$ systemctl status postgresql.service ● postgresql.service - PostgreSQL RDBMS Loaded: loaded (/lib/systemd/syste..
Django에서 redis.exceptions.AuthenticationError Authentication required 오류가 발생했을 때, redis는 password 가 있는데 Django에서는 password 설정을 해주지 않은 것이다. redis가 설치되어있는 server로 가서 redis conf를 확인해보자. $ vi /etc/redis/redis.conf requirepass를 검색해보면 비밀번호가 무엇인지 알 수 있다. 예를 들어 Django에서 밑에 사진처럼 사용하면 된다. redis 선언되어있는곳에서 Host, Port, Password까지 확인해주면 끝! CACHES = { "default": { "BACKEND": "django_redis.cache.RedisCache", "L..
ubuntu 20.04에서 redis를 설치하기 위한 방법 apt로 간단하게 설치 가능하다. 1 ) apt update ubuntu@dev1990:~$ sudo apt update 2 ) apt-get install redis-server ubuntu@dev1990:~$ sudo apt-get install redis-server 3) systemctl status redis-server.service (등록된 서비스 파일 확인) (또는 프로세스 확인 (ps -ef)) ubuntu@dev1990:~$ sudo systemctl status redis-server.service ● redis-server.service - Advanced key-value store Loaded: loaded (/lib/s..
ubuntu 20.04 환경에서 Go로 프로젝트를 진행하기 위해 Golang install 하는 방법 https://go.dev/doc/install Download and install - The Go Programming Language Download and install Download and install Go quickly with the steps described here. For other content on installing, you might be interested in: 1. Go download. Click the button below to download the Go installer. Download Go Don't see your operating syste go.dev..