- 浏览: 7860 次
- 性别:
- 来自: 北京
最新评论
文章列表
一、pig 的安装条件
1、hadoop 的安装
2、Java 1.6 的安装
二、pig 的下载 安装 配置
1、pig 的下载 http://pig.apache.org/ 下载相应版本的pig 文件
2、解压安装
3、配置
配置环境变量 vi /etc/profile 在后面PATH参数位置增加pig的安装目录路径
export PATH=$JAVA_HOME/bin:$PATH:/home/hadoop/pig-0.7.0/bin:$PATH
source /etc/profile ...
一、安装 JDK
$chmod +x jdk-6u38-linux-i586.bin
$./jdk-6u38-linux-i586.bin
安装完后设置java 环境变量如下
命令 :/home路径下
$vi /etc/profile
然后添加如下语句
export JAVA_HOME=/home/java/jdk1.6.0_38
export PATH=$JAVA_HOME/bin:$PATH
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
然后source /etc/profile ...
一、概述我们通过Shell可以实现简单的控制流功能,如:循环、判断等。但是对于需要交互的场合则必须通过人工来干预,有时候我们可能会需要实现和交互程序如telnet服务器等进行交互的功能。而Expect就使用来实现这种功能的 ...
Axis2配置指南(翻译)
关键字: Axis2
In Axis2, there are three kinds of configuration files to configure the system. The first one is to configure the whole system (global configuration), the second one is to configure a service (service configuration), and the third one is to configure a module (module configu ...
- 2008-05-18 02:33
- 浏览 1722
- 评论(0)