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 APM mysql ./configure LynX 2017-12-15 729
208 HardWare PacketTracer533_setup file LynX 2013-10-16 727
207 Windows7 OEM을 활용하여 클린설치 file [11] LynX 2010-11-06 716
206 Linux 리눅스 게이밍 가이드 2부 : 실전 게임 플레이와 문제 해결 [13] LynX 2014-12-24 714
205 HTML Tag CSS 여러가지 모양 만들기 LynX 2018-02-08 709
204 APM PHP 5.5.12 설치 file LynX 2013-12-31 698
203 PHP 5.3 + MSSQL 연동 [2] LynX 2012-12-08 697
202 3D Printer Pronterface(PrintRun) install file LynX 2018-09-13 695
201 로우 포맷(Low level format, 저수준 포맷) 하기 file [11] LynX 2011-07-06 692
200 Linux Linux 환경에서 ACE framework 설치하기 [11] LynX 2015-01-12 690
199 Linux CentOS (5.x, 6.x) - Apache Web Server 2.4 file LynX 2014-06-26 684
198 Windows XP 핫픽스 통합 시디 만들기 [18] LynX 2013-06-20 675
197 CentOS7 ▒ Doly의 CentOS7 강좌28 12. 네트워크 보안설정 12.1 firewalld (1/2) file [10] LynX 2015-06-09 671
196 Linux LFS/Introduction - 소개 [8] LynX 2014-08-06 669
195 CentOS network card setup [1] LynX 2016-04-20 660
» Linux forever 설치 [18] LynX 2015-06-10 660
193 HTML Tag 모바일 웹에서 동영상 재생방법 LynX 2013-07-13 658
192 CentOS7 ▒ Doly의 CentOS7 강좌30 12. 네트워크 보안설정 12.2 iptables 서비스 (1/3) file [11] LynX 2015-06-09 646
191 CentOS CentOS7 커널 업데이트 LynX 2018-04-23 645
190 Linux Fedora 크롬 루트로 실행 LynX 2014-06-27 645

XE Login