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
번호 제목 글쓴이 날짜 조회 수
269 Linux MaNGOS [2] LynX 2015-12-05 2633
268 Linux Linux에 Boost 설치하기 LynX 2015-11-30 519
267 CentOS wow 6.x 구축 [6] LynX 2015-11-30 1133
266 CentOS wow 3.3.5a 구축 [1] LynX 2015-11-30 1163
265 Windows Windows 10 재작 툴 file [21] LynX 2015-08-19 840
264 Server DNS [25] LynX 2015-07-16 1596
263 Programing 웹사이트 APK 만들기 file [1] [17] LynX 2015-07-02 2102
262 CentOS APM 소스설치 정리 file [18] LynX 2015-06-17 4628
261 CentOS CentOS7 Mail Server Setting file [13] LynX 2015-06-13 7906
» Linux forever 설치 [18] LynX 2015-06-10 660
259 CentOS7 ▒ Doly의 CentOS7 강좌30 12. 네트워크 보안설정 12.2 iptables 서비스 (1/3) file [11] LynX 2015-06-09 646
258 CentOS7 ▒ Doly의 CentOS7 강좌29 12. 네트워크 보안설정 12.1 firewalld (2/2) [21] LynX 2015-06-09 5282
257 CentOS7 ▒ Doly의 CentOS7 강좌28 12. 네트워크 보안설정 12.1 firewalld (1/2) file [10] LynX 2015-06-09 671
256 CentOS7 ▒ Doly의 CentOS7 강좌27 10. 디스크관리 6 XFS 쿼타 file [15] LynX 2015-06-09 5732
255 CentOS7 ▒ Doly의 CentOS7 강좌26 10. 디스크관리 5 LVM 5.1 SSM file [9] LynX 2015-06-09 919
254 CentOS7 ▒ Doly의 CentOS7 강좌25 10. 디스크관리 2 Gnome-disks 그놈 디스크 관리도구 file [16] LynX 2015-06-09 946
253 CentOS7 ▒ Doly의 CentOS7 강좌24 8. 파일 및 디렉토리 관리 2 파일관리자 mc file [13] LynX 2015-06-09 433
252 CentOS7 ▒ Doly의 CentOS7 강좌23 8. 파일 및 디렉토리 관리 1-파일 브라우저 노틸러스 file [13] LynX 2015-06-09 404
251 CentOS7 ▒ Doly의 CentOS7 강좌22 7. 사용자와 그룹관리 3-관리자 권한 전환 [19] LynX 2015-06-09 887
250 CentOS samba [22] LynX 2015-06-07 3098

XE Login