You cannot see this page without javascript.

forever 설치

Linux 조회 수 662 추천 수 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
269 Linux 리눅스 부팅시 초기화 [21] LynX 2015-01-05 1085
268 Linux LFS/Preface - 서문 [9] LynX 2014-08-06 1072
267 CentOS7 ▒ Doly의 CentOS7 강좌10 3. CentOS시작, 종료, 둘러보기 -2 file [17] LynX 2014-10-23 1071
266 APM APM 기본적인 점검 LynX 2013-12-27 1067
265 CentOS mariadb install LynX 2019-05-31 1062
264 CentOS APM 소스 설치 file [15] LynX 2015-05-29 1057
263 Linux MySQL 5.1.73 바이너리 설치 LynX 2014-07-02 1055
262 Xpress Engine XE 애드온(addon)개발하기 LynX 2014-07-11 1047
261 Linux 리눅스 게이밍 가이드 1부 : 게임을 위한 환경 설정 [10] LynX 2014-12-24 1036
260 Server 전산업무 리스트 LynX 2016-05-20 1031
259 CentOS7 ▒ Doly의 CentOS7 강좌2 1.리눅스의 이해 file [13] LynX 2014-10-23 1028
258 Linux roundcube 설치 [14] LynX 2014-08-25 1019
257 Programing 인쇄할 영역만 인쇄 file LynX 2013-12-06 1016
256 Server 윈도우7(Window)에 DNS서버(acrylic-from sourceforge) 설치하는 방법 file LynX 2014-05-14 990
255 APM 무료 ssl 설치 LynX 2013-12-21 990
254 APM Apache httpd mod_security2 적용 file LynX 2017-02-09 988
253 Server OpenSSL LynX 2014-06-19 987
252 HTML Tag JWPlayer 사용법 #2 포맷 [14] LynX 2013-06-25 984
251 Linux Bomi Player [24] LynX 2015-02-27 976
250 CentOS CentOS 에 설치된 커널과 오랜된 커널 삭제하기 LynX 2014-12-30 975

XE Login