ubuntu(25)
-
ubuntu 에서 redmine 설치시 rmagick 관련 오류가 나올 경우
ubuntu 에서 redmine 설치시 rmagick 관련 오류가 나올 경우 An error occurred while installing rmagick (2.13.2), and Bundler cannotcontinue.Make sure that `gem install rmagick -v '2.13.2'` succeeds before bundling.r apt-get install graphicsmagick-libmagick-dev-compat libmagickwand-dev
2013.11.10 -
Could not find libv8-3.11.8.17 in any of the sources
Could not find libv8-3.11.8.17 in any of the sources gem install libv8
2013.09.18 -
sqlite 설치 및 기본 사용법
1. 설치 apt-get install sqlite 2. 접속 및 디비 생성 #sqlite 접속할 db명.db 없는 파일명일 경우 자동으로 디비 생성. 3. 도움말 sqlite> .help 점 (.)을 찍고 명령어를 입력하는게 기본 사용법.
2013.09.06 -
mongoDB 설치와 php 연동
1. mongoDB설치 apt-get install mongodb php5-mongo 2. php에 so 설정 추가 vi /etc/php5/conf.d/mongo.ini extension=mongo.so 추가
2013.09.03 -
postgreSQL 설치
postgreSQL 설치 apt-get install postgresql 커맨드쉘 접속 sudo -u postgres psql postgres 비밀번호 업데이트 alter user postgres with encrypted password '비밀번호';
2013.08.29 -
Ubuntu 13.04 에 MariaDB 설치하기
Ubuntu 13.04 에 MariaDB 설치하기 1. 패키지 관리 설치 apt-get install software-properties-common 2. 키 추가 apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 1BB943DB 3. 레포지터리 추가 sudo add-apt-repository 'deb http://mirror.yongbok.net/mariadb/repo/10.0/ubuntu raring main' 4. 업데이트 및 설치 apt-get updateapt-get install mariadb-server 참고 자료 https://downloads.mariadb.org/mariadb/repositories/
2013.08.28