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 LinuxMint mint linux 한영키 [10] LynX 2014-12-19 388
268 Linux 리눅스 사용 기초 - 02 일반 명령어 사용법 익히기 LynX 2017-02-17 389
267 Xpress Engine XML 쿼리 대신 직접 mysql 사용하기 LynX 2014-07-16 393
266 Linux Linux 파티션 file LynX 2014-06-25 401
265 Linux linux 시간설정 file LynX 2016-10-07 401
264 CentOS7 ▒ Doly의 CentOS7 강좌23 8. 파일 및 디렉토리 관리 1-파일 브라우저 노틸러스 file [13] LynX 2015-06-09 407
263 inf 설치시 경고창 안뜨게 하기 file [10] LynX 2011-06-22 414
262 CentOS apache.service LynX 2015-02-25 416
261 APM Proxy AJP LynX 2014-05-27 419
260 OpenSolaris Open Solaris 설치 file [12] LynX 2014-12-30 420
259 SoftWare 포토샵 버튼 [17] LynX 2015-01-27 420
258 APM php7에 memcache.so 확장 모듈 적용 file LynX 2016-09-23 420
257 APM asp file LynX 2014-05-28 422
256 Linux PlayOnLinux [3] LynX 2014-11-28 422
255 APM hhvm install file LynX 2016-12-28 422
254 Linux libiconv LynX 2017-12-08 422
253 Xpress Engine XE 애드온의 제작 규칙 LynX 2014-07-11 423
252 Programing cab파일 만들기 file LynX 2014-06-13 425
251 윈도우서버2008 - 04 (그룹 생성,관리,권한) file LynX 2012-11-28 428
250 Windows XP USB로 XP 설치하기 file LynX 2013-06-20 429

XE Login