검색결과 리스트
컴퓨터 연구 에 해당되는 글 113건
- 2025.02.18 Redis key 값으로 저장
- 2025.02.17 우분투에 Redis 설치 및 실행
- 2024.12.09 Let's encrypt HTTPS 설정 2
- 2024.11.17 라즈베리 파이 네트워크 설정 삭제
- 2024.10.10 ubuntu에서 path 출력
- 2024.09.03 ssh-keygen 생성 후 등록 후 clone 했을 때 안 됨
- 2024.08.26 linux 8000 포트 실행 프로그램 검사
- 2024.08.19 pip install mysqlclient 설치 하다가 오류 발생
- 2024.08.19 AWS 기본 아키텍처
- 2024.07.29 rvm 버전 설치
- 2024.07.28 맥북 화면잠금 단축키
- 2024.07.27 brew 설치하고 나서 PATH 추가
- 2024.07.24 라즈베리 파이 기본 데스크탑 환경
- 2024.07.21 리눅스에서 내 아이피 확인
- 2024.07.21 라즈베리 파이 디스크 제거
2025. 2. 18. 01:08
2025. 2. 17. 23:15
1. sudo apt update
2. sudo apt upgrade -y
3. sudo apt install redis-server
4. sudo service redis-server start
5. sudo service redis-server status
6. redis-cli
7. PING을 입력하면 PONG이 리턴
설치 및 실행 성공
2024. 12. 9. 11:18
1. 도메인 설정
2. nginx 설치 후 실행
3. certbot 설치
sudo apt install certbot python3-certbot-nginx
4. 인증서 발급
sudo certbot --nginx -d apple.com
5. 접속 확인
https://apple.com
Apple
Discover the innovative world of Apple and shop everything iPhone, iPad, Apple Watch, Mac, and Apple TV, plus explore accessories, entertainment, and expert device support.
www.apple.com
6. http에서 https로 redirection
server {
listen 80;
server_name apple.com;
return 301 https://$host$request_uri;
}
7. 설정 후 nginx 재시작 및 테스트
sudo nginx -t
sudo systemctl restart nginx
2024. 11. 17. 16:49
sudo rm /etc/NetworkManager/system-connections/*
2024. 10. 10. 12:39
2024. 9. 3. 15:46
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/apple
해당 디렉토리에 새로 생성한 .ssh/apple 추가
여기서 apple 은 새로 생성한 apple.pub의 private key 파일
2024. 8. 26. 20:39
2024. 8. 19. 15:17
sudo apt-get install python3-dev default-libmysqlclient-dev
build-essential pkg-config
위의 패키지들을 설치 후 다시 설치
2024. 8. 19. 14:02
2024. 7. 29. 20:20
brew --prefix openssl
rvm install 2.6.10 --with-openssl-dir=$(brew --prefix openssl)
2024. 7. 28. 14:03
2024. 7. 27. 12:15
(echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/leejaeman/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
위의 두 줄을 추가한다
2024. 7. 24. 09:02
2024. 7. 21. 15:17
2024. 7. 21. 09:41