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 윈도우7 메모리 인식 문재 file [13] LynX 2011-11-30 509
208 Server Open Solaris 패키지 설치 및 삭제 LynX 2014-12-29 511
207 Programing 개행문자 LynX 2014-10-29 513
206 Linux ISO 마운트 [10] LynX 2014-12-22 516
205 Linux Linux에 Boost 설치하기 LynX 2015-11-30 519
204 CentOS CemtOS 7.3 base Trinitycore 3.3.5 Compile file LynX 2017-11-13 520
203 Linux 리눅스에 곰플레이어 설치하기 file LynX 2014-07-01 536
202 설치파일(inf)에 대한 이해 [7] LynX 2011-06-22 546
201 탐색기 메뉴에 '명령 프롬프트 열기'와 '메모장으로 열기' 추가하기 file [14] LynX 2010-11-08 547
200 Linux wkhtmltopdf wkhtmltoimage install LynX 2018-01-31 550
199 Server DHCP file LynX 2013-10-04 557
198 Java Script 레이어 팝업 LynX 2014-06-02 570
197 Linux 페도라17(centos7) 새로운 서비스 관리 LynX 2014-07-20 570
196 Linux LFS/Bootscripts - 시스템 부트로더 설정하기 [8] LynX 2014-08-06 570
195 LinuxMint LinuxMint Apache source 설치 file [8] LynX 2014-12-29 571
194 윈도우서버2008 - 03 (액티브디렉토리,XP환경) file [9] LynX 2012-11-28 573
193 Xpress Engine module_srl 과 mid 변환 LynX 2014-07-12 576
192 CentOS7 ▒ Doly의 CentOS7 강좌1 CentOS7 file [8] LynX 2014-10-23 576
191 APM php.ini 정리 file LynX 2014-05-17 579
190 CentOS postfix dovecot roundcube [10] LynX 2015-05-08 582

XE Login