How to run CQ on Free Tier with AWS

Hello,
I setup a cloud and synced it with my AWS account. After running the service for a day, I found out that I was charged for this usage by Amazon due to the provisioning of a RHEL server for the CQ Author and Publish instances. Is there a way to instruct CQ Cloud to start up an EC2 Instance with a free license (AKA not RHEL or SUSE linux?) Here are the notes from Amazon's agreement.
† The following Linux variants are not eligible for the free usage tier as a software license is required: SuSe Linux Enterprise Server and Red Hat Enterprise Linux (RHEL).
‡ The following Windows variants are not eligible for the free usage tier: Microsoft Windows Server 2008 R2 with SQL Server Web, Microsoft Windows Server 2008 R2 with SQL Server Standard, Microsoft Windows 2008 R2 64-bit for Cluster Instances and Microsoft Windows 2008 R2 SQL Server 64-bit for Cluster Instances.
http://aws.amazon.com/free/?utm_source=AWS&utm_medium=website&utm_campaign=LP_hero
Thanks,
Russ

Hi,
Thank you for your feedback.
Currently, we only offer RHEL AMI by default for starting up CQ clouds on AWS.
Using Micro instances will result in a charge of approximately $65/month for running a CQ cloud 24/7.

Similar Messages

  • How to run Labview apps in tablet with android os

    How to run Labview application in tablet with android operating system?
    Can we use Labview mobile module or we must use google play data dashboard for labVIEW? how to install it in PC?
    Solved!
    Go to Solution.

    If you had looked at data dashboard and some of the other links on Android, you would see that you cannot run a LabVIEW app on Android. Nor can you use a serial port. With Data Dashboard, you have a pc running LabVIEW and it publishes to network shared variables. Data Dashboard on the Android allows you to view those variables.

  • HT2534 How can I download a free app with an existing Apple ID without to give my credit card infos?! The ID ist already made...

    How can I download a free app with an existing Apple ID without to give my credit card infos?! The ID ist already made...

    Sorry, but you can't. The process only works when creating a new Apple ID. With an existing ID you'll have to provide a payment method at least temporarily.
    Regards.

  • How To Run An External .exe File With Command Line Arguments

    Hiya, could anyone tell me how I can run an external .exe file with command line arguments in Java, and if possible catch any printouts the external .exe file prints to the command line.
    Thanks.

    Using the Runtime.exec() command. And read this:
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html

  • How to run struts-1.2.7 with BigApache 1.06

    I have installed BigApache 1.06 and I want to run struts application in BigApache. The version of struts is 1.2.7 , and the application is the sample application:struts-examples which comes with the installation
    I had copied the war file in ..\BigApache\Jboss\server\all\deploy folder for deployment. The server is running i had checked the sample web applications of Big Apache . but when i tried to run my application through browser
    it gave me following error on the browser:
    Object not found!
    The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.
    Error 404
    How can i solve this , do i need to restart the server , when i try to restart the server it gives me following error
    [Mon Jun 27 09:22:11 2005] [alert] (OS 5)Access is denied. : FastCGI: CreateMut
    ex() failed
    Syntax error on line 86 of C:/BigApache/Apache/conf/httpd.conf:
    failed to create FastCGI application accept mutex
    Note the errors or messages above, and press the <ESC> key to exit. 28...
    Can any body tell me how can I resolve this issue, do i need to do some configuration

    Sascha,
    I've sent an email to my colleague Ric who wrote the OTN whitepaper on how to install a 10.1.2 UIX application into OC4J 10.1.3. Hopefully he may be able to help me understand what are the issues with running UIX 10.1.2 with ADF 10.1.3. I'll post what I'm able to learn to this thread.

  • How to run a standalone java program with JRC to display/run a report

    Hi All,
    I am new to this forum.
    I am trying to run a java program developed using JRC to run a report created using Crystal Report XI. I stucked because not knowing how to run that java program.
    Can anyone help me? or
    can give a simple java code to do the same.
    Thanks in advance.
    Saravanakumar.

    Hi Saravana
    For the steps to run a standalone application java program with JRC to display/run a report ,please refer the following link.
    http://support.businessobjects.com/communityCS/TechnicalPapers/cr_xi_r2_jrc_deployment.pdf.asp
    You can get the sample code for standalone/desktop applications from the following link.
    http://support.businessobjects.com/communityCS/FilesAndUpdates/crxi_r2_jrc_desktop_samples.zip.asp
    Please do revert in case of any queries.
    Thanks
    Soni

  • How to download adobe illustator free trial with mac os x version 10.6.8 ?

    cant i download adobe illustrator free trial with mac os x version 10.6.8??

    Dams94 it depends on which version of Illustrator you want to download?  You can find the system requirements for Illustrator at System requirements | Illustrator.

  • How to use registrati​on-free COM with TestStand

    We create several different test programs run by TestStand. The sequence typically calls a function in a .NET dll that in turn calls functions in COM objects. We would like to use registration free COM to isolate the programs from each other but I'm having difficulty making it work. I know that in principle the manifest file and COM objects could be put in the same directory as SeqEdit.exe but this is unacceptable. I was thinking that using the activation context might be a way to do it. For example in C#: ActivationContext.CreatePartialActivationContext(ApplicationIdentit​y, string[]). ApplicationIdentity is the application identity of SeqEdit and the string [] parameter contains paths and names of manifest files that describe the needed COM objects. The idea would be to load an activation context with the .NET dll called by the sequence so SeqEdit could find the COM dlls in the same directory as the sequence. I haven't gotten it to work yet. Any ideas?

    Russell1,
    I'm going to try to give as thorough description as I can, since many other users may not understand what you're asking about.
    Normally, a COM server (ActiveX servers are COM servers) is registered with Windows via the registry.  Unfortunately, you can only have one version of the server registered at a time.  This is one of the reasons why TestStand (which is a COM server) needs a version switcher to change between engine versions.
    There is a technology called "Registration-free COM" that allows an application to use a COM server without having it registered in the windows registry.  It involves creating manifest files for the COM server and for the application that is calling the com server.  These manifest files are used by the operating system when the application tries to call the COM server to find the server.  Usually the OS would go to the registry, but it will check the manifest files first.
    The best reference on registration-free COM is an article on MSDN: Registration-Free Activation of COM Components: A Walkthrough.
    A year or so ago, there was a TestStand customer who was interested in forcing some of their applications to use a certain version of a COM server; I was able to get this working for them. 
    I tested the .NET and MFC TestStand user interfaces, and found that I could get registration-free COM working with both.  I found that two .manifest files needed to be created.
    The first is a .manifest file for the COM server.  This was a straightforward process following exactly the instructions in the above walkthrough (Step 7).
    The second is a .manifest file for the UI.  Since the TestStand UIs have their manifest files embedded in the application, I had to modify the .manifest file before building the UI, or use the .NET SDK tool mt.exe.
    After creating both manifest files, I found that adding them was enough to make .NET calls to the COM server work correctly if the application and server were in the same directory. 
    Unfortunately, I did not do any testing with having the COM server in a different directory.
    Now, on to your question:
    I just did some poking around on MSDN, and I have found the following information.
    Note that after you have configured a .manifest file for your COM server, it is then referred to as an "assembly".  I am making an assumption here (but I think it's a reasonable assumption) that after this, the COM server can be used just like any other assembly.  Specifically, it will be searched for in the same way an assembly is searched for.
    MSDN documents How the Runtime Locates Assemblies.  Note near the bottom of that page, if the assembly has not been bound to before, and it is not in the Global Assembly Cache (GAC), it will probe for the assembly.  From this I think the following are possible solutions.  Please note that I haven't tested any of them.
    MSDN documents the Probing behavior.  Note that it will only probe in sub-folders of the current application root directory ([application base]).  Note that there is also some information at the bottom of the page about COM interop scenarios.  I think what it is saying is that if you already are in an assembly, and call a COM server, it will look in the same folder as that assembly for the COM server.  This might be a possible solution for you.
    There is also an AssemblyResolve event that is fired if the CLR is unable to locate the assembly.  I don't know if this event is fired in the case that the COM server cannot be found, but if it is, you could then define your own way to search for the server.  I found this information in a blog post by Microsoft developer: https://blogs.msdn.com/junfeng/archive/2006/03/27/​561775.aspx
    One last possibility is to use an Application Configuration file; which is similar to a manifest file.  According to that page, there is an element called 'probing' that you can use with Windows 7 or Windows Server 2008 R2 when defining assembly binding to specify relative paths to probe for the assembly.
    I honestly don't know if any of these possibilities will work.  Please let me know if you get it working or if you need some more help, and I'll do my best to assist you.
    Message Edited by Josh W. on 02-04-2010 03:23 PM
    Josh W.
    Certified TestStand Architect
    Formerly blue

  • How to run .JSP 9iReport from web with Parameter Form

    Hi,
    I m trying to run a .JSP 9ireport from the web. now i have two problems.
    1. how do i display a parameter form from the web, meaning when the user clicks on the link to the report a parameter form should be displayed and the report should give the output for those parameters.
    2. how do i format the report output which i get in the web in pages, with a link called "NEXT" which upon clicking will take the user to the next page.
    Any help will be appreciated. Thanks in advance.
    Unmesh

    1. Take a look "Building a reports with a Parameter Form" in "Getting Started with Oracle9i Reports" in otn (URL: http://otn.oracle.com/products/reports/htdocs/getstart/examples/index.html)
    2. Normally web page doesn't have page concept. If you want to define the page for web, you need to do it yourself in the jsp. However, we do support paper based report that supports page and can be deployed on the web. Use pagestream=yes in the URL request.
    Thanks,
    -Shaun

  • How to run 64-bit native code with Java Web Start

    This question has probably been asked many times, but I couldn't find anything in my searches.
    How can I get Java Web Start on a Solaris client (Solaris 10 in this case, with JRE 1.5) to run a java application that includes a 64-bit native code library? The application downloads fine, including the jar file that has the native shared object, but when the native library is loaded by the java application, I get a "wrong ELF class: ELFCLASS64" error.
    I assume that is because Web Start is invoking the 32-bit java VM, which can't load a 64-bit library. I tried configuring Java Web Start to use the 64-bit VM (by setting the path to java to ".../jre/bin/sparcv9/java" in the javaws console) but then I get an error that says "Can't load library: .../jre/lib/sparcv9/libdeploy.so".
    Does Java Web Start support 64-bit native code, and if so, what do I need to do differently?
    Thanks.

    No it can't. On the Sun download page of the JRE it says that 64 Bit systems need to use the 32 Bit JRE to execute Plugins - this might be the same for Web Start apps.

  • Test results showing how FCP7 running on 10.6 messes with gamma

    I've been running some simple tests to determine how FCP7 handles gamma when running 10.6.4.
    Note that 10.6.4 now uses a gamma of 2.2 natively (as do PCs).
    I created three images in targa, png and tif (also tried exr, but FCP won't read that) that contained squares colored in different shades of gray, solid colors and mixed colors.
    This download link is good for 7 days:
    https://www.yousendit.com/directDownload?phi_action=app/directDownload&fl=SWhZek ZpTk1IcWR1a29CcFA0aU9SMHVDeVNFRkF0Qm1kRmM2aXU1dg
    When I brought these into FCP, the results were not good.
    FCP changed the gamma considerably on them, so that all the colors were WAY off (127,127,127 became 145,145,145)
    I was able to ALMOST fix this by applying a gamma filter (NOT the gamma correction filter, totally different) with a value of .82.
    Now, in a 0.255 scale, my values were only off by one.
    However, that is a massive color shift for anyone dealing with color management.
    1. Is there a way to bring in an image sequence so that FCP does NOT tamper with the gamma?
    2. If I must gamma correct, is there a 3rd party plug-in with more significant digits? I need more digits than .82.
    I also did some testing on Quicktime.
    QT10 is a total mess. When I output to a non-self-contained mov (after gamma correcting), it was WAY off.
    QT7 is on the mark and matches what VLC shows.
    The same goes for outputting to H.264. QT7 = good, QT10 = BAD.
    I suppose I'll experiment with Compressor now to see the proper values to get ALMOST back to my original colors.
    Hopefully I'm missing some hidden setting for 'give me back my original gamma'.
    BTW - you can open the images I supplied in Photoshop to see the correct values.
    Using the 'digital color meter' included with 10.6 is a quick way to determine the RGB values that are displayed on the screen in FCP, QT and other programs.
    And a value of 127,127,127 is just an absolute value, doesn't really matter if you have a $10K reference monitor to display it on (although, I'm sure the same RGB values would look different on the reference monitor).
    BTW, FCP7 and 10.5 also mess with gamma.

    As I had such dismal results with getting h.264 from FCP7/Compressor to match my input colors when viewed in VLC and the Quicktime player, I decided to try using Premiere CS4.
    Both Premiere CS4/AME and FCP7/Compressor produced h.264 that was pretty far off when viewed in VLC and the Quicktime player7, although CS4/AME was a bit closer.
    As my final output is often intended for the web, I decided to try the same files when displayed using the latest Flash player.
    The results were interesting.
    The Premiere CS4 results were all within 1 value of being correct. 127,127,127 would end up as 126,126,126 - and the same for the other shades of grey and color combinations.
    But the FCP7/Compressor display was a disaster. 63,63,63 displayed as 81,81,81.
    127,127,127 displayed as 144,144,144.
    So, at least for Flash viewing of videos on the web, FCP/Compressor just couldn't produce accurate colors, they were all WAY off.
    I'll have to try the same tests for DVD and BluRay.
    BTW - this is the very simple image I used for testing (this display is a png, I used a tga for the actual tests to eliminate any possibility of a color profile getting embedded by mistake).
    http://i34.tinypic.com/29lbgo7.png
    This link with the original files is valid until aug 12:
    https://www.yousendit.com/directDownload?phi_action=app/directDownload&fl=SWhZek ZpTk1IcWR1a29CcFA0aU9SMHVDeVNFRkF0Qm1kRmM2aXU1dg

  • How to run the set-up program with a brand new X200?

    I bought a brand new X200 from TigerDirect. As their guidance of shipping, I tested it within very short time. When I turned on the machine, a program was automatically run to have me to make some necessary configuration roughly ASAP so that the shipping boy could get my receipt. Now I wanna run it again to refine the configuration but found out that I don't know how to manually run it again.  Another confusion is I didn't find the recovery disc in the box. Why? Do you think there's some problems? And more, even I got the disc, after I upgraded the OS from Vista Business to Windows 7, if the the disc would be available for the new system? Or I have to order a new one for Windows 7?

    If I'm reading your note correctly, you had to open the package and boot in the presence of the delivery driver to generate a document before the driver could leave.
    If that is the case, this isn't a Lenovo function and unlikely to be restored by any Lenovo Repair / Recovery.
    Tiger Direct is your resource to restore the system to that point in time.
    A good tip, every new computer should be imaged as a slave drive or with a proven boot stick / boot CD and archived before powered into the included MBR and OS,  archive the image to a DVD and another DVD or reliable source and youll always have a pristineimage of your laptop at "zero day"
    Those images are helpful at resale and often coveted by buyers of used gear in the Thinkpad community.
    Don't just sit there, take a second and use the Kudo's button to compliment the people who help you.

  • How to run report on command line with user parameter?

    Hi,
    How do I run oracle report on command line (batch) with pre-set User Parameter values ? e.g. :P_1 ='SYSDATE' , :P_2 = 'DEPT_NO'
    Thanks

    Hello,
    If you are using rwrun :
    rwrun report=myreport destype=file desname=c:\temp\myreport.pdf desformat=pdf P_1='SYSDATE' P_2='DEPT_NO' userid=scott/tiger@dbalias
    If you are using rwclient , just add server=<reports server name> :
    rwclient server=myrepsevrername report=+myreport+ destype=file desname=c:\temp\myreport.pdf desformat=pdf P_1='SYSDATE' P_2='DEPT_NO' userid=scott/tiger@dbalias
    Regards

  • How to run stand alone executables developed with different versions of LabView on the same system

    I am using LabVIEW 8.2 to develop a stand alone executable for a target system.  The target system already has a stand alone executable written by another vendor, using LabVIEW 7.1.  I installed the LV RunTime Engine for 8.2 which left the 7.1 engine intact (as it should).  The problem I am now having is that the drivers installed on the target system are incompatible with the NI-DMM vi's that I am using.  My concern is that if I replace the old drivers with the ones I am using on my development platform I may end up breaking the old software.  What would be an appropriate work around to ensure that the target system will be able to run both executables?  (FWIW the system will NOT be running both executables concurrently.)
    The target system is an embedded PXI card cage, running Windows XP, with a NI PXI-4070 DMM (among other instruments, however I have had not had this issue with the NI-DAQmx drivers).

    Hi Yerffejj,
    Thanks for sharing your issue with the community. I am struggling to see what you mean by "break the software." If you only have the two executables and LV Run-Time versions 8.2 & 7.1, then you just need to go to http://www.ni.com/support/ » Drivers and Updates » Search within Results: » enter "NI-DMM" » GO to get the DMM driver you need. To see the driver you were using on the development machine, just go to Measurement & Automation Explorer (MAX). The DMM driver should also automatically install DAQmx, NI-VISA, and NI-IVI, fyi.
    Best wishes to you, and please let us know if that does not solve your problem.
    Regards,
    Dan Richards
    Dan Richards
    Certified LabVIEW Developer

  • How to run 300w of video cards with precision tower 5810 685W power supply?

    I have a precision tower 5810 with 685W power supply.  In the Tech Specs it says.
    Support for two PCI Express® x16 Gen 2 or Gen 3 graphics cards up to 300W (total graphics in two slots with 685W PSU)
    So you should be able to run two 150w video cards but 150w video cards all seem to need two 6pin power connecters each for a total of four 6pin power connecters for two cards.  But my 5810 only has two 6pin connecters.  And I can't find anywhere to plug in more.

    150W cards have 1 pci-e connector, 75W comes from the X16 slot and 75W comes from 1 PCI-E connector.
    225W  cards need 2 which gives 150W from PCI-E power and 75W from the X16 slots.
    You cant use 2X  225W card.

Maybe you are looking for