Sponsored Content
Operating Systems HP-UX Downloading or purchasing HP-UX for HP Integrity rx4640 Post 303030836 by vbe on Sunday 17th of February 2019 07:41:09 AM
Old 02-17-2019
As you mention its a RX---- that means to me a itanium architecture which I am not familiar with ( only had one box and wasnt me that did the install...) I have no idea how the licensing works in such case, but it seemed to me that it depends more on the products ( which of course can depend on how many cores...), to my knowledge a basic core OS for scientific use was almost free (came with the box... and CD was free of code ) but once you had mission critical server etc... you pay a lot... now its more what do you have in each bundle
Core OS is as its name mentions all the OS but without any optional ... Important? well depends your expectations, you have all the HP-UX but without what can be (very ) useful when you talk about production box: e.g. you wont have mirror-ux nor online-JFS etc...
You cant survive as a production box without VG00 on 2 separate disks in mirror ( my point of vue...)
having to unmount filesystems ( and so interrupting users/applications access ...) to modify the logical volume or filesystem will rapidly get on your nerve not mentioning the case of /var where you will almost have to go single user...
I remember some bundles were for java/web servers but not sure that it was at extra cost and some for RDBMS ( maybe included some extra C libraries to compile or link oracle stuff... When you add HA packages is when all gets expensive as clusters are not cheap... and virtualisation options....

I used to order systematically the mission-critical OS bundle which comprises those 2 options plus maybe others to me not that important but there in case...
This User Gave Thanks to vbe For This Post:
 

3 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

purchasing a unix account

i just want to know if there is any place that i can purchase a unix account to use for life. i don't like the hassle of changing my email address every time i enter a new university/workplace, and i'd like some place to store files that i can access around the world. thanks! (2 Replies)
Discussion started by: 1515
2 Replies

2. Solaris

Purchasing Solaris Software

I am traditionally from the world of HP-UX, but have inherited seven Sun servers - a mixture of V120 and V240 servers. They have not been on software support with Sun/Oracle and I now need to purchase the latest versions of Solaris to put on them rather than put them back on support. Does... (3 Replies)
Discussion started by: marcusfra
3 Replies

3. HP-UX

FAULTY DISK replacement HP rx4640

Hello, I'm new to this forum and as you will see from my question I'm new to UNIX as well. One of our costumers has HP rx4640 running on UNIX with two 300GB hot-swappable disks that are mirrored. They reported to us that one of the disks is faulty and they want us to take care of it. Below is... (16 Replies)
Discussion started by: gjk
16 Replies
BUNDLE-PACKAGE(1)														 BUNDLE-PACKAGE(1)

NAME
bundle-package - Package your needed .gem files into your application SYNOPSIS
bundle package DESCRIPTION
Copy all of the .gem files needed to run the application into the vendor/cache directory. In the future, when running bundle install(1) bundle-install.1.html, use the gems in the cache in preference to the ones on rubygems.org. GIT AND PATH GEMS
Since Bundler 1.2, the bundle package command can also package :git and :path dependencies besides .gem files. This needs to be explicitly enabled via the --all option. Once used, the --all option will be remembered. REMOTE FETCHING
By default, if you simply run bundle install(1) bundle-install.1.html after running bundle package(1) bundle-package.1.html, bundler will still connect to rubygems.org to check whether a platform-specific gem exists for any of the gems in vendor/cache. For instance, consider this Gemfile(5): source "https://rubygems.org" gem "nokogiri" If you run bundle package under C Ruby, bundler will retrieve the version of nokogiri for the "ruby" platform. If you deploy to JRuby and run bundle install, bundler is forced to check to see whether a "java" platformed nokogiri exists. Even though the nokogiri gem for the Ruby platform is technically acceptable on JRuby, it actually has a C extension that does not run on JRuby. As a result, bundler will, by default, still connect to rubygems.org to check whether it has a version of one of your gems more spe- cific to your platform. This problem is also not just limited to the "java" platform. A similar (common) problem can happen when developing on Windows and deploy- ing to Linux, or even when developing on OSX and deploying to Linux. If you know for sure that the gems packaged in vendor/cache are appropriate for the platform you are on, you can run bundle install --local to skip checking for more appropriate gems, and just use the ones in vendor/cache. One way to be sure that you have the right platformed versions of all your gems is to run bundle package on an identical machine and check in the gems. For instance, you can run bundle package on an identical staging box during your staging process, and check in the ven- dor/cache before deploying to production. March 2013 BUNDLE-PACKAGE(1)
All times are GMT -4. The time now is 01:37 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy