Simply use the following as your filter:
expert.message contains "Duplicate IP address"
This will search the Frame's "Expert Info" attribute for the following text: "Duplicate IP address"
Simply use the following as your filter:
expert.message contains "Duplicate IP address"
This will search the Frame's "Expert Info" attribute for the following text: "Duplicate IP address"
Here are the instructions on how to communicate with Amazon's API to export a VM from Amazon EC2 to a VMware image that gets put into S3 storage. From that point, you can simply download the VMware image and import it into your VMware environment.
0. Open up a command prompt
1. Setup your java path (you can use JRE or JDK):
set JAVA_HOME="C:\Program Files\Java\jre6"
2. Verify your version with this command (you should see the java version number):
%JAVA_HOME%\bin\java -version
3. Add the bin directory that contains the java executable to your path before other versions of java
set PATH=%java_home%\bin;"%Path%"
4. Verify you can see the java version by executing the following command:
java -version
5. Set the EC2_HOME path
SET EC2_HOME=c:\ec2-api-tools-1.6.5.4
6. Verify the ec2_home using
dir %EC2_HOME%
7. Update the path
set PATH="%PATH%";%EC2_HOME%\bin
8. Setup access key environment variables
set AWS_ACCESS_KEY=XXXXXXXXXXXXXXXXXX
set AWS_SECRET_KEY=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
9. Verify the tools setup -- if setup correctly, we should be able to view our available regions.
ec2-describe-regions
10. Execute the following command:
ec2-create-instance-export-task i-EC2INSTANCENAME -e VMware -f VMDK -c ova -b S3STORAGEBUCKET
Once you have executed the command above, you can use the following commands to track/manage the cloning process.
Notes: You could easily take steps 1-8 to setup an automated script to connect to amazon's services. If you would like more information on these steps, here was a great article I ran across explaining everything in detail.
http://docs.amazonwebservices.com/AWSEC2/latest/UserGuide/SettingUp_CommandLine.html
1. Open up a command prompt (Start->cmd)
2. Navigate to the directory where you want your folder.
3. Execute the following command: mklink /D foldertoredirect C:\path\to\another\directory
That's all that is to it!
Note: This works for creating FTP directories that need to redirect to another.
Here are the steps involved to change the SSL certificates from the default VMware Self-Signed certificate to one signed by either your internal CA or a public CA. This tutorial works for both the View Connection Server or Security Server services. An official KB article by VMware on this subject can be found here: http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=2020913
In this particular guide, we cover generating an SSL certificate with an Internal CA. If we wanted to sign our server with a public CA, we could use a tool like openSSL to generate a certificate request, send the request to a public CA. Next, we would import a PFX12 file with the private and public key into the Local computer's Personal certificates and change set Friendly Name to vdm.
All credit for this guide goes to VMware for this information. This post is merely for archival purposes and self-reflections on the subject.
This process does NOT work for VMWare View 5.1 only 5.0
Here are the steps involved to change the SSL certificates from the default VMware Self-Signed certificate to one signed by either your internal CA or a public CA. This tutorial works for both the View Connection Server or Security Server services.
Notes:
Here is the issue I was having when trying to remove a host from View:
Desktop Composer Fault: "Virtual Machine with Input Specification already exists"
VMware has a great write-up on the article here on how to remove a VM that cannot be removed through the View Adam panel:
Here is how to replace the SSL certificates on VMware Update Manager running under vCenter 5.1. I found the text from the following document, just reposting for future reference/ease of access: http://www.vmware.com/files/pdf/techpaper/vsp_51_vcserver_esxi_certificates.pdf
To update the certificate for the View Composer server, complete the following steps:
Additional information on the sviconfig tool can be found here: http://pubs.vmware.com/view-50/index.jsp?topic=/com.vmware.view.upgrade.doc/GUID-C22EAD48-88BA-4DE8-A70F-202A954DF047.html
Original support article can be found here: http://pubs.vmware.com/view-51/index.jsp?topic=%2Fcom.vmware.view.installation.doc%2FGUID-5ED2A8AB-0D5F-495F-B2F7-D7C64C7A021E.html
Symptom: When replacing my VMWare certificates with signed certificates, I was receiving the following error when running the Invoke Certificates command:
Method Invocation Result: vpx.fault.SecurityConfigFault
Solution: Unfortunately, the only way I could figure out how to fix this issue was to reboot the vCenter server and try again. The error went away upon reboot.