- Community Home
- >
- Software
- >
- HPE Morpheus Software
- >
- HPE Morpheus VM Essentials
- >
- Tools - Archives
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
yesterday
Can [Tools] - [Archive] be used with HPE Morpheus VM Essentials, or is it only available with Enterprise?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
yesterday
SolutionYou can use it also in HPE Morphues VM Essentials.
- Create an archive and use an existing bucket (e.g an NFS or CIFS share). Bucket can be the same as e.g. your Virtual Image Share.
- You can make this Archive public (no authentication required).
- Add some files to the Archive
- Click on the uploaded file. You will see the private and public (if enabled) URL for the file.
- Click on scripts and find some sample code you can use in your own scripts to access/download the files to files to your VM's.
- You can use those sample scripts in "Library - Automation". E.g. I have a script that automatic installs mprime to run some perf tests. mprime binary is located in the Archive and the script will download the binary and extract (and/or run the binary or whatever you want)
- Here is a little example (lab-code, not cleaned up :D)
file_url="<%= archives.link('Apps Archive', 'p95v3019b20.linux64.tar.gz', 1200) %>"
wget $file_url -O "./p95v3019b20.linux64.tar.gz" --no-check-certificate
mkdir /tmp/mprime
mv p95v3019b20.linux64.tar.gz /tmp/mprime
cd /tmp/mprime
tar -zxvf p95v3019b20.linux64.tar.gz
Once you have an automation, you can use this automation during deployment of a new VM. In this example, prime will be automatically installed in the VM after deployment.
You can also run the automation on already provisioned VM's via Actions - Run Task in the Instance.
Or you can run the automation on multiple VM's at once via the Execute button in the Automation/Task itself.
Since this is all about automation, you can also checkout morpheus-cli to further script the execution of an automation to multiple VM's.
Official documentation on https://support.hpe.com/hpesc/public/docDisplay?docId=sd00006560en_us&page=GUID-3AC9CEB6-F60C-46FA-83E1-769F4A989C10.html
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]
