분류 전체보기(143)
-
ubuntu 에서 Django 의 설치
1. 파이썬 설치 sudo apt-get install python 2. pip 설치 sudo apt-get install python-pip 3. Django 설치 sudo pip install Django 참고 문서 : https://docs.djangoproject.com/en/dev/topics/install/
2014.01.08 -
ubuntu 에서 mod_wsgi 설치하기
ubuntu 에서 mod_wsgi 설치하기 sudo aptitude install libapache2-mod-wsgi 참고자료 https://www.digitalocean.com/community/articles/installing-mod_wsgi-on-ubuntu-12-04
2014.01.07 -
레드마인에서 A common libraries 설치후 달력이 나오지 않는 문제
레드마인 플러그인 중에서 A common libraries 를 설치 한 이후 Enable to load Twitter Bootstrap library 옵션을 활성화 한 경우 달력이 정상적으로 출력되지 않는 경우가 있다. 해당 옵션을 켠 후엔 충돌나진 않는지 확인해보자.
2013.11.12 -
redmine 에서 내계정 메뉴로 들어갔을때 internal error 가 발생하는 경우
redmine 설치후 사용자 정보 페이지로 이동하였을때 다음과 같은 에러가 발생하는 경우 Internal errorAn error occurred on the page you were trying to access. If you continue to experience problems please contact your Redmine administrator for assistance.If you are the Redmine administrator, check your log files for details about the error.Back 레드마인이 설치된 경로의 권한 설정을 새로 확인한다. cd /srv/www/redmine.example.com/ -> this is a folder which ..
2013.11.11 -
redmine 과 apache 연동하기 (by passenger)
redmine 과 apache 연동하기 (by passenger) 1. passenger 설치 gem install passengerpassenger-install-apache2-module 만약 다음과 같이 설치 에러가 나온다면 Installation instructions for required software * To install Apache 2 development headers: Please download it from http://httpd.apache.org/ apt-get install apache2-prefork-devoryum install httpd-devel apr-devel apr-util-devel * To install Apache Portable Runtime (APR) ..
2013.11.11 -
ubuntu 에서 swap 공간 만들기
ubuntu 에서 swap 공간 만들기 1. swap 공간 체크하기 sudo swapon -s 다음과 같이 스왑 공간으로 생성 된 것이 없어야지 만들수 있다 FilenameTypeSize Used Priority 2. 파일시스템 체크 sudo df 체크해서 실사용하는 공간이 여유가 있는지 확인한다.(swap 파일 생성시 512MB정도의 공간을 사용한다) 3. swap 파일 만들기 sudo dd if=/dev/zero of=/swapfile bs=1024 count=512ksudo mkswap /swapfile 다음과 같이 나오면 잘 만들어 진 것이다. Setting up swapspace version 1, size = 524284 KiBno label, UUID=11af4bed-ef35-4bab-afc..
2013.11.10