How to use server storage

Hi,
i am working on POC and as of now i dont have SAN and other storage so can i use my Hyper-V host storage? if yes then what are the ways to configure same
Santosh dharamsale

Hi
Yes you can use the host storage, as this is a POC it should be fine.
You can split the partition in windows so that the VM resides on the secondary partition.
Within hyper-v you can change the location of VM's.
Hope this helps. Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

Similar Messages

  • How to use Blob storage to office 365 sharepoint online library documents

    Hello,
    Considering that we cant uploade a file with size more than 250 MB and it is recommended using Remote
    Blob Storage (RBS) if large files are supposed to store in SharePoint.
    My question is, how to use RBS or Azure Blob storage to store files instead of SQL database.
    What is the configuration or code i need to write to accomplished this where i would prefer if it can be done simply using some configuration.
    any sample or tutorial would be great help.
    Thanks,
    Asjad 

    HI,
    What we did, we deploy small Azure PaaS application what used Azure Blob Storage and table and then show it in Office365 SharePoint online trough iframe. This gives you flexibility to customimze the PaaS application and show the content at blog storage.
    We tested this in SharePoint ONline multitenant and Dedicated plus in On Premise SharePoint with the custom code in separate IIS server published trough UAG to Internet. This allows you to save or replace your file server with Azure and small PaaS apps in
    and show the content on SharePoint ONline trough Iframe.
    Br Petri

  • How to use server push technology

    I need to write a Chatroom by using Server-push technology. Who would like to offer some information about this technology for me? Thanks!!

    Define "server-push" technology.client-pull is where the client pulls, via a specific request, information from the server.
    Server-push is where the server pushes information to a client when that information becomes available. The client does not initiate the exchange.

  • How to use cloud storage on lumia 510

    Please let me know the procedure to use cloud storage. I know it has an option called share in skydrive. But it is disabled for me.
    Please do the needful ASAP
    Solved!
    Go to Solution.

    You need to download and install an app called Skydrive from the Marketplace. Once installed, sign in to the Skydrive using the app and the same live id you are using for the phone. 

  • How to use USB storage on X3500

    How do i set up for my Macbook to see the USB storage that I connect to the X3500? When I go to Finder>Network>X3500 SMB server, It said that Connection fail. However I can access it with no problem in Windows 7 using bootcamp.
    I'm using Macbook pro retina running 10.9.3

    @vickvohoang, make sure and verify the correct IP Address of your X3500 router. The 192.168.1.1 is only the default IP Address. It might be changed and you need to check it. To check:
    1. Click the Apple icon then select the System Preferences… option.
    2. Click the Network icon under Internet & Wireless.
    3. On the Network window, click the Advanced… button. The default Location would be set to Automatic.
    4. Click the TCP/IP tab. The Mac computer’s IP address, Subnet Mask and the router’s IP address will then be displayed.
    Use the current Router's IP to map the network drive and you should be okay.

  • How to use server time in  Timer Class

    Hai,
    I have develped an application(stand alone) using swings. the exe runs in all the systems in my company.
    requirement is
    --> application has to be closed at 11.59 P.M everyday.
    i did this task using Timer class. Timer class takes the system time in which the application runs. what i need is the server time. so when the application runs it has to check the server time and when the server time is equal to 11.59 PM application has to be closed.
    so how do i map the timer class to my server time?
    iam breaking my head for this for past few days. is there any way to do this?
    thanks

    1)Do you have one database in total? I mean all Java Application read and save data to this database. If so, try to get time from database by using database function. I recommend you to do this because database is central and all application share data with the database.
    2) You can still call web server in Java application. My link in last post will tell you.
    3) You can write a Java Server application for providing current server time for all your Java application. Socket technique may be used.
    Therefore, solution 1 and solution 2 look simpler than solution 3.

  • HT201318 how to use the storage i bought

    I bought additional storage for my ipad 2 which is currently a 16g.  I thought it would automatically be added to my device.  But I still keep getting messages that I have no space.  How do I get/use the space I bought?

    You can use iCloud's storage to backup and store:
    -Photos and videos in the Camera Roll
    -Device settings (for example: Phone Favorites, Wallpaper, and Mail, Contacts, Calendar accounts)
    -App data
    -Home screen and app organization
    -Messages (iMessage, SMS, and MMS)
    -Ringtones
    But you can not store content like apps, music, videos with iCloud. Could it be that your device capacity is just full? If yes, then you will have delete some of your content before you can store something else.

  • How to use server-side classes in a web service proxy client ?

    Greetings,
    I'm using WebLogic 10.3 with Workshop 10.3 on Windows. I generate a Web Service client in Workshop. There are two options in the New->Others->Web Service category: ClientGen Web Service Client and Web Service Client. I've chosen the second one as it's a JAX-WS Web Service and I think that the first one (ClientGen Web Service is to be used with JAX-RPC Web Services. The proxy is generated but, since the Web Service is using POJOs as parameters, a new version of these POJOs is also generated. For example, my Web Service has an operation like: public OrderStatus putOrder (Order), where OrderStatus and Order are application scoped POJOs. The proxy generation process generates a _PortType class which is supposed to be used by the calling client. This class defines an operation public OrderStatus putOrder(Order), but the OrderStatus and Order classes aren't the original ones but the generated ones. The issue is that these generated classes aren't completely equivalent to the original ones, for examples all lists become arrays, the constructors are different, etc. This is extrememly annouying. Is there any option to say to the proxy generation process to keep with the server-side classes ?
    many thanks in advance for any help.
    Nicolas

    The only solution to this problem seems to be using dynamic proxies. But it doesn't work neither as the following code:
    Service service = Service.create(new URL("http://localhost:7001/OrderServiceProject/OrderService?WSDL"),
    new QName("http://www.simplex_software.fr/demo/services", "OrderService"));
    OrderService orderService = service.getPort(new QName("http://www.simplex_software.fr/demo/services", "OrderServicePort"), OrderService.class);
    raises the following exception:
    16 déc. 2009 19:55:51 com.sun.xml.internal.ws.model.RuntimeModeler getRequestWrapperClass
    INFO: Dynamically creating request wrapper Class fr.simplex_software.demo.services.jaxws.PutOrder
    16 déc. 2009 19:55:51 com.sun.xml.internal.ws.model.RuntimeModeler getResponseWrapperClass
    INFO: Dynamically creating response wrapper bean Class fr.simplex_software.demo.services.jaxws.PutOrderResponse
    16 déc. 2009 19:55:51 com.sun.xml.internal.ws.model.RuntimeModeler getRequestWrapperClass
    INFO: Dynamically creating request wrapper Class fr.simplex_software.demo.services.jaxws.GetOrderStatus
    16 déc. 2009 19:55:51 com.sun.xml.internal.ws.model.RuntimeModeler getResponseWrapperClass
    INFO: Dynamically creating response wrapper bean Class fr.simplex_software.demo.services.jaxws.GetOrderStatusResponse
    Exception in thread "main" java.lang.IllegalArgumentException: fr.simplex_software.demo.services.OrderService is not an interface
         at java.lang.reflect.Proxy.getProxyClass(Proxy.java:362)
         at java.lang.reflect.Proxy.newProxyInstance(Proxy.java:581)
         at com.sun.xml.internal.ws.client.WSServiceDelegate.createEndpointIFBaseProxy(WSServiceDelegate.java:630)
         at com.sun.xml.internal.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:331)
         at com.sun.xml.internal.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:313)
         at com.sun.xml.internal.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:295)
         at javax.xml.ws.Service.getPort(Service.java:92)
         at fr.simplex_software.demo.client.OrderServiceClient.main(OrderServiceClient.java:23)
    As a matter of fact, fr.simplex_software.demo.services.OrderService is not an interface but, nevertheless, it's a SEI and it was generated as it is by the IDE Web Service wizard. Big, big confusion ! Of course, this sample works perfectly with Metro, in NetBeans using Glassfish.

  • Web service proxy - how to use server side in/out objects

    We have logic in oracle database. We have pl/sql api with oracle object types as in/out parameters. On server side we have pojo classes with method to convert from/to sql structs, arrays.
    pl/sql apis are exposed as web services.
    When I create web service proxy, all required pojo classes are created from wsdl on client side.
    Currently we are also writting client part of the code(where we also have oracle database and we want to reuse server pojos). Server pojo classes are in separate jar file and used also on a client side.
    Is it possible to tell jdeveloper when creating web service proxy, to not create client side pojos, exception classes, ... , but use those from jar file.
    Currently I just copy server pojo over generated client ones, make some modifications and it works. But each time I regenerate web service proxy I have to do this step manually.
    Edited by: zgrega on Sep 24, 2010 7:43 AM
    Edited by: zgrega on Sep 24, 2010 7:47 AM

    best is to wrap the generated WS proxy in a JavaBean. This way you can create the exception handling once and apply it to all uses of the WS proxy by overriding the generated code
    Frank

  • HT201238 How to use cloud storage?

    How do I access my 20 GB extra cloud storage?

    You have bought extra space for your device backups (photos, documents, files etc), if you want to download extra content onto your iPad then you will have to delete some of your existing content from your iPad.
    You can see how much space each app (the app itself and its content) is taking up on your iPad via Settings > General > Usage > Manage Storage (under the 'storage' heading) - and you can delete apps (those that you've downloaded from the store, you can't delete built-in app) from there (before you delete an app make sure that you've copied off anything important in them e.g. any documents), or via the iPad's home screens.

  • Azure sdk2.5 - how to use encrypted diagnostics connectionstring

    could you please guide us on how to use encrypted storage connection string for diagnostics. Assume that in Azure 2.4, my application is used encrypted storage string and programmatically decrypted and connected to diagnostics with DiagnosticsMonitor.StartConnectionString.
    Could you please guide on how to use the same scenario in SDK2.5
    thanks
    kiran

    AFAIK, it is not possible to do so with SDK 2.5. Any custom encryption/decryption logic wouldn't work because this is now stored in diagnostics.wadcfgx file and code based diagnostics manipulation is not supported.
    Hope this helps.

  • How to Create Shared Storage using VM-Server 2.1 Red Hat Enterprise Linux 5

    Thanks in advance.
    Describe in sequence how to create shared storage for a two guest/node Red Hat Linux Enterprise using Oracle 2.1 VM Server on Red Hat Linux Enterprise 5 using command line or appropriate interface.
    How to create Shared Storage using Oracle 2.1 VM Server?
    How to configure Network for two node cluster (oracle clusterware)?

    Hi Suresh Kumar,
    Oracle Application Server 10g Release 2, Patch Set 3 (10.1.2.3) is required to be fully certified on OEL 5.x or RHEL 5.x.
    Oracle Application Server 10g Release 2 10.1.2.0.0 or 10.1.2.0.1 versions are not supported with Oracle Enterprise Linux (OEL) 5.0 or Red Hat Enterprise Linux (RHEL) 5.0. It is recommended that version 10.1.2.0.2 be obtained and installed.
    Which implies Oracle AS 10.1.2.x is some what certified on RHEL 5.x
    I think it would be better if you get in touch with Oracle Support regarding this .
    Sorry , I am not aware of any document on migration from Sun Solaris to RH Linux 5.2 .
    Thanks,
    Sutirtha

  • How to monitor Library Server storage?

    I can't figure out how to monitor the Library Server storage in VMM console.  The VMM server is the only library server and it's using an iSCSI lun.
    I just want to know how much space is available on the storage for the library server.
    any ideas?
    Do i need to configure it as a provider with SMI-S??

    I installed Nagios Core in my Ubuntu workstation 10.04 for me to learn something new in my craft. I use this now to monitor our Windows Server 2008 with MySQL server installed as well as our Datalink Switch (DGS-1210-24). I searched on google on how to monitor a MYSQL server installed in Windows server using Nagios Core but i could not seem to find any. Could anybody who's expert in Nagios give me steps on how to do so. Thanks. All i found in google were steps in monitoring mysql installed in linux and nothing in windows server.
    This topic first appeared in the Spiceworks Community

  • How to use the same OC4j server with different port number

    How to use the same OC4j server with different port numbers..?
    I have to OC4J installed on my machine on different hard disk drives....
    I want to be able to run both the server simultaneously..?
    is it possible ..it yes then how..?
    for that i have changed the port number of one server...
    but when i am trying to start the other server with different port number..it says that JVM -Bind already...
    Is there any clues...?
    Nilesh G

    In the config directory:
    default-web-site.xml: Change the port the HTTP listener listens on
    jms.xml: Change the port the JMS service listens on
    rmi.xml: Change the port the ORMI listener listens on.
    Or, you can add another web-site.xml file, and deploy your applications to 1 server, and bind the web applications to the different web sites. This way you only have to deploy your applications to 1 place.
    Rob
    Oracle

  • How to use ssd as boot drive and hdd as storage on a macbook pro 13

    Does anyone know how to use SSD as boot drive and have HDD in optical bay as storage on a Macbook pro 13. I mean in that both drives work as one . by formatting using mac software . I would like to run all programs and OS but would love to have my downloads and useless data on run on my 1tb 5400rpm hdd without me have to manual send it there..

    Does anyone know how to use SSD as boot drive and have HDD in optical bay as storage on a Macbook pro 13. I mean in that both drives work as one
    Each drive mounts as a separate volume. There is no convenient way to make them look like one contiguous volume.*
    Franky, with an hdd and a ssd I would recommend you put your home dir on the hdd and leave the ssd for the OS and your key applications.  It's relatively easy to do and I think better than moving only portions of your stuff.
    How to Move the Home Folder in OS X – and Why
    * There are ways to to make musltiple volumes appear as one large drive but I think it is beyond the scope of this discussion and not appropriate to this configuration.

Maybe you are looking for

  • Snow Leopard Mail

    I have a mobileme account connection doctor gives me the green. I can't send any mail from the Mail App. It shows 1 in outbox as soon as I click outbox it vanishes. No sent mail or any received in Inbox. Works fine with my Iphone and the web. It was

  • Changeing the size of text fields

    Hello I am trying to get my text fields for the login and password on the website I am working on to shrink to a smaller size to fit with the design of the website. So far I have only been able to change the amount of caracters the box displays in dr

  • Battlefield Hardline PC Digital Download Pre-Order issues

    Seems there's a couple issues with the "Digital Download" for PC pre-order of Battlefield Hardline. First, the pre-order is not showing up as a $10 certificate promo for Gamersclub, which is should be because all versions of Battlefield Hardline are

  • Ipod Classic specific iTunes (App store)

    I've not had my iPod long and have gone for an old 30gb classic instead of one of the newer models. Loving it! A question about App store, is it possible to have the app store only show items that will work on my model of iPod (model specific apps in

  • Is it possible for Mac Pro 724 Windows xp to install?

    Is it possible for Mac Pro 724 Windows xp to install?