일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Redis
- AWS
- node.js
- For
- 블레이드 템플릿
- docker
- nginx
- Redux
- nodejs
- mariadb
- deep learning
- 기초 수학
- webpack
- React
- Backbone.js
- linux
- Machine Learning
- Babel
- rabbitmq
- NCP
- Switch
- CentOS
- python
- Node
- Go
- laravel
- javascript
- fastapi
- SQL
- php
- Today
- Total
목록Linux (10)
개발일기

0. 기본 설정 다운로드 폴더를 생성 후, 해당 폴더로 이동 mkdir /downloads cd /downloads 1. Redis 파일 다운로드 Redis 공식 홈페이지에서 파일을 wget 명령어를 통해 다운로드한다. wget 명령어란 웹 상의 파일을 다운로드 하기 위해 사용하는 리눅스의 명령어이다. wget https://download.redis.io/releases/redis-6.2.6.tar.gz 2. 압축해제 tar xzf redis-6.2.6.tar.gz cd redis-6.2.6 3. make / make install make make install # 레디스 폴더에서 위의 명령어를 순차적으로 입력해준다. # /usr/local/bin 폴더에 redis-cli, redis-server 등..

CentOS 6까지는 Mysql이였지만 CentOS 7 부터는 MariaDB로 제공한다. 1. Repository 찾기 https://mariadb.org/download/?tab=repo-config Download MariaDB Server - MariaDB.org REST API Release Schedule Reporting Bugs … Continue reading "Download MariaDB Server" mariadb.org 자신의 OS와 일치하는 mariadb의 저장소 정보를 찾는다. # MariaDB 10.6 CentOS repository list - created 2021-11-05 07:01 UTC # https://mariadb.org/download/ [mariadb] nam..