You cannot see this page without javascript.

forever 설치

Linux 조회 수 660 추천 수 0 2015.06.10 16:46:19

Ubuntu

#
# Update Ubuntu and Install Git, OpenSSL, and pkgconfig
#
apt-get -y update 
apt-get -y install git-core build-essential libssl-dev pkg-config

#
# Install node
#
git clone http://github.com/joyent/node.git
cd node
git checkout v0.6.7
./configure
make
make install

#
# Install forever
#
cd ../
npm install forever -g

CentOS

#
# Update CentOS
#
yum update
rpm -ivh http://repo.webtatic.com/yum/centos/5/`uname -i`/webtatic-release-5-1.noarch.rpm
yum install openssl-devel pkgconfig gcc gcc-c++ kernel-devel make git

#
# Install Node and Forever
#
cd /usr/src
git clone http://github.com/joyent/node.git
cd node
git checkout v0.6.7
./configure
make && make install
cd /root
npm install forever -g

Gentoo

#
# Update system
#
emerge --sync
emerge portage

#
# Install git, and other dependencies
#
emerge --verbose dev-vcs/git dev-util/pkgconfig

#
# Install python 2.7
#
wget curl http://python.org/ftp/python/2.7/Python-2.7.tgz -o Python2.7.tgz
tar -zxvf Python2.7.tgz
cd Python-2.7
./configure
make && make install
mv /usr/local/bin/python /usr/local/bin/python2.6.2
mv /usr/local/bin/python2.7 /usr/local/bin/python
cp -f /usr/local/bin/python /usr/bin/python

#
# Install node, npm, and forever
#
git clone git://github.com/joyent/node.git
cd node
git checkout v0.6.7
./configure
make && make install
cd ../
npm install forever -g
List of Articles
번호 제목 글쓴이 날짜sort 조회 수
209 Linux PDO_MYSQL 설치 [8] LynX 2014-08-01 310
208 Linux Custom Kernel 컴파일링 & 설치하기 [8] LynX 2014-08-06 457
207 Linux LFS/Preface - 서문 [9] LynX 2014-08-06 1072
206 Linux LFS/Introduction - 소개 [8] LynX 2014-08-06 669
205 Linux LFS/Preparation - 준비 LynX 2014-08-06 746
204 Linux LFS/Building - 빌드하기 [11] LynX 2014-08-06 2614
203 Linux LFS/Bootscripts - 시스템 부트로더 설정하기 [8] LynX 2014-08-06 570
202 Linux LFS/Make Bootable System - LFS 시스템 부팅하기 LynX 2014-08-06 445
201 Linux LFS/TheEnd - 마무리 LynX 2014-08-06 382
200 Linux roundcube 설치 [14] LynX 2014-08-25 1013
199 Linux firewall 설정 [1] LynX 2014-08-25 1253
198 Linux imap-php 설치 [7] LynX 2014-09-02 3727
197 CentOS7 ▒ Doly의 CentOS7 강좌1 CentOS7 file [8] LynX 2014-10-23 576
196 CentOS7 ▒ Doly의 CentOS7 강좌2 1.리눅스의 이해 file [13] LynX 2014-10-23 1023
195 CentOS7 ▒ Doly의 CentOS7 강좌3-2.CenOS 7 설치-1 file [13] LynX 2014-10-23 967
194 CentOS7 ▒ Doly의 CentOS7 강좌4-2.CenOS 7 설치-2 file [12] LynX 2014-10-23 1255
193 CentOS7 ▒ Doly의 CentOS7 강좌5 - 2.CenOS 7 설치-3 file [9] LynX 2014-10-23 1278
192 CentOS7 ▒ Doly의 CentOS7 강좌6 2.CenOS 7 설치-4 file LynX 2014-10-23 2929
191 CentOS7 ▒ Doly의 CentOS7 강좌7 2.CenOS 7 설치-5 file [8] LynX 2014-10-23 341
190 CentOS7 ▒ Doly의 CentOS7 강좌8 2. CenOS 7 설치-6 file [8] LynX 2014-10-23 385

XE Login