Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
wget http://www.apache.org/dist/ambari/ambari-1.7.0/ambari-1.7.0.tar.gz (use the suggested mirror from above)
tar xfvz ambari-1.7.0.tar.gz
cd ambari-1.7.0
mvn versions:set -DnewVersion=1.7.0.0


RHEL (CentOS 5 or 6) & SUSE (SLES 11):

Code Block
mvn -B clean install package rpm:rpm -DnewVersion=1.7.0.0 -DskipTests -Dpython.ver="python >= 2.6"

 

Ubuntu:

Code Block
mvn -B clean install package package rpmjdeb:rpm jdeb -DnewVersion=1.7.0.0 -DskipTests -Dpython.ver="python >= 2.6"

 

Note: You need to have tools such as rpm-build tool, brunch, etc.  For details on prerequisites, please see Ambari Development.

...