Debian System(1)Java and NodeJS Env

Debian System(1)Java and NodeJS Env

First of all, how I know I am using debian, ubuntu or centOS. Try this command
> cat /etc/issue
Debian GNU/Linux 6.0 \n \l

Yeah, I am using Debian 6.0

Download the debian iOS from here https://www.debian.org/
https://www.debian.org/distrib/

I plan to use the latest version.

1. Set up System
add to the sudoers
http://sillycat.iteye.com/blog/1154358

Check the IP
>/sbin/ifconfig -a

2. Install JAVA
It is really useful to follow this doc
http://www.webupd8.org/2014/03/how-to-install-oracle-java-8-in-debian.html

>su root
>echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main" | tee /etc/apt/sources.list.d/webupd8team-java.list
>echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main" | tee -a /etc/apt/sources.list.d/webupd8team-java.list
>sudo apt-get update
>su carl
>sudo apt-get install oracle-java6-installer
>sudo apt-get install oracle-java7-installer
>sudo apt-get install oracle-java8-installer

>java -version
java version "1.8.0_31"
Java(TM) SE Runtime Environment (build 1.8.0_31-b13)
Java HotSpot(TM) 64-Bit Server VM (build 25.31-b07, mixed mode)

Switch the java version
>sudo update-alternatives --config java
>sudo update-alternatives --config javac

3. Install Mysql
> wget http://repo.mysql.com/mysql-apt-config_0.2.1-1debian7_all.deb
> sudo dpkg -i mysql-apt-config_0.2.1-1debian7_all.deb
> sudo apt-get update
> sudo apt-get install mysql-server-5.6

4. Install git
> wget https://www.kernel.org/pub/software/scm/git/git-2.3.4.tar.gz
> ./configure
> make prefix=/home/carl/tool/git-2.3.4 all

Error Message:
In file included from credential-store.c:1:0:
cache.h:21:18: fatal error: zlib.h: No such file or directory
compilation terminated.

Solution:
> sudo apt-get install build-essential
> sudo apt-get install zlib1g-dev

Error Message:
INDEX lib/
* tclsh failed; using unoptimized loading
MSGFMT po/bg.msg make[1]: *** [po/bg.msg] Error 127
make: *** [all] Error 2

Solution:
> sudo apt-get install gettext

Error Message:
fatal: Unable to find remote helper for 'https'

Solution:
> sudo apt-get install libcurl4-openssl-dev

> make prefix=/home/carl/tool/git-2.3.4 all
> make prefix=/home/carl/tool/git-2.3.4 install

Add the git to the /opt directory and add it to the path

Set the password Cache time
> git config --global credential.helper "cache --timeout=360000"

5. Install NodeJS Env
> wget http://nodejs.org/dist/v0.12.1/node-v0.12.1.tar.gz
> ./configure --prefix=/home/carl/tool/node-v0.12.1
make and install on the right location

6. Install memcache server
> wget http://www.memcached.org/files/memcached-1.4.22.tar.gz
> wget https://sourceforge.net/projects/levent/files/libevent/libevent-2.0/libevent-2.0.22-stable.tar.gz

unzip and install libevent first.
> ./configure --prefix=/home/carl/tool/memcached-1.4.22

make and install, adding to the path, start the server
> memcached -d -m 50 -p 11211 -u carl -l 0.0.0.0

7. Install RabbitMQ
Install the erlang first
> wget http://www.erlang.org/download/otp_src_17.4.tar.gz
>export LANG=C
configure and make and make install

Error Message:
configure: error: No curses library functions found
configure: error: /bin/bash '/home/phunware/install/otp_src_17.4/erts/configure' failed for erts

Solution:
> sudo apt-get install ncurses-dev

Install RabbitMQ
>wget https://www.rabbitmq.com/releases/rabbitmq-server/v3.5.0/rabbitmq-server-generic-unix-3.5.0.tar.gz

Unzip that file and change the sbin/rabbitmq-defaults, add the ERL_DIR path there.
Follow these command to start the rabbitMQ server
http://sillycat.iteye.com/blog/2066116
Start the Server
>sudo sbin/rabbitmq-server
Check and Stop the Server
>sudo sbin/rabbitmqctl status
>sudo sbin/rabbitmqctl stop

Install chrome browser
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
sudo chmod 644 /etc/apt/sources.list.d/google-chrome.list
sudo apt-get update
sudo apt-get install google-chrome-stable

8. Problem with the rootfs
http://forums.debian.net/viewtopic.php?f=30&t=85821

Need to use the entire disk. - Guided - use entire disk and set up LVM, All files in one partition


References:
http://linux.ittoolbox.com/groups/technical-functional/redhat-l/how-to-check-if-my-linux-box-is-redhat-or-other-flavour-1214138
http://serverfault.com/questions/516190/how-to-install-mysql-5-6-on-debian-7-wheezy
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值