Debian에 Redis 설치.

Linux 2017. 6. 26. 12:21

1.  vi /etc/apt/sources.list.d/dotdeb.list 파일을 만듬.


deb http://mirrors.teraren.com/dotdeb/ stable all
deb-src http://mirrors.teraren.com/dotdeb/ stable all


위의 내용 복사 붙여넣기.


2. GPG 키를 다운로드 받고 설치한다.


wget https://www.dotdeb.org/dotdeb.gpg
sudo apt-key add dotdeb.gpg


자세한 정보는 https://www.dotdeb.org/instructions/ 를 참조할것.


3. apt pakage를 업데이트 시킨다.


sudo apt-get update

sudo apt-get install redis-server


4. 설치확인을 해보자.


redis-cli



[ 기본 설정 ]


sudo sysctl vm.overcommit_memory=1


을 설정해주고


vi /etc/sysctl.conf

로 파일 열고


vm.overcommit_memory=1


를 추가해주자.

Posted by C마노
,
import time

time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(1347517370))


'Python' 카테고리의 다른 글

Pycharm 에서 무조건 세팅해줘야 할것.  (0) 2017.05.18
[Flask] Flask - wsgi - nginx 연동.  (0) 2017.05.15
[Python] YAPF  (0) 2017.03.11
[Python] python getter setter  (0) 2017.02.16
[Python] 공부해야 할 것.  (0) 2017.02.15
Posted by C마노
,
  • If you want to just remove background, you will have to edit your color scheme at "Settings/Preferences | Editor | Colors & Fonts | General | Injected language fragment" (actual style may be called a bit differently in different IDE version -- just use settings search box (top left corner) to quickly find it)

  • If you want to remove actual injection altogether -- "Settings/Preferences | Editor | Language Injections" -- disable all unwanted rules


'Python' 카테고리의 다른 글

파이썬 epochTime을 원하는 포멧의 Date로  (0) 2017.06.22
[Flask] Flask - wsgi - nginx 연동.  (0) 2017.05.15
[Python] YAPF  (0) 2017.03.11
[Python] python getter setter  (0) 2017.02.16
[Python] 공부해야 할 것.  (0) 2017.02.15
Posted by C마노
,