How many concurrent users are allowed for an Azure Virtual Machine?

How many concurrent users are allowed for an Azure Virtual Machine?
Please share the details with the Azure VM size. Currently I have Standard VM of size D13(4 cores, 28GB RAM)

Hi SanPSK,
Thanks for posting here.
I suggest you to check this article for Azure VM size
https://msdn.microsoft.com/en-us/library/azure/dn197896.aspx
For the concurrent users on VM - A maximum of 2 concurrent connections are supported, unless the server is configured as a Remote Desktop Services session host.
Girish Prajwal

Similar Messages

  • How many concurrent users are allowed in 8.1.7

    Hi All,
    I need to find out how many users can log into a 8.1.7 database. Can anybody help me with this?
    Its a 8.1.7 database running on Sun 5.9
    Any help would be very appreciated.

    What Joel said is true but you may also need to set a couple of init.ora parameters for sessions, processes. Oracle provides a couple of parameters that can be used to limit connections: license_max_sessions, license_max_users, and license_sessions_warning.
    See the Oracle 8.1.7 Reference manual for details on the parameters.
    HTH -- Mark D Powell --

  • How to find out how many concurrent users using web application?

    Hi all,
    I have a web application deployed using 9iAS. I am trying to find out how to find out how many concurrent users are using this application at any one time. According to Oracle there is no way to see this information using the enterprise manager interface.
    Does anybody out there know how I can find out this information in real time? Failing that, are there any good analysis tools out there that display usage to the minute (all the tools I have found show usage by hour which is not sufficent for my needs).
    Any help would be much appreciated,
    Caroline

    I know I haven't heard of any software to do this, but this also sounds like a really hard problem to try and really analyze well.
    The trick is, you might "infer" how long a user is using an application based on when cookies are set and when they're set to expire. If that's a long time, though, that could count far more "concurrent" users than are actually there. A user could simply close the application at any time and stop using the application; you can't really detect that because the server isn't "told" when the user closes their browser or goes somewhere else.
    A good perl script might be able to read the Apache access log and tell you how many unique IPs asked for a given directory in which various applications are stored in any 5 minute span of time... that could be something like an indicator of "concurrent" users.
    If you don't know Perl, I'd suggest getting the O'Reilly & Associates book on Perl and learning it, because the more I think about this, the more this sounds like a textbook example for applying a Perl script.

  • Recommended spec can take how many concurrent users

    With the following recommended spec from Adobe website, how many concurrent users ?
    Flash Media Streaming Server system requirements
    OS : Windows Server 2003 SP2 or Windows 2008
    H/W Requirements
    -          3.2GHz Intel Pentium 4 Processor (dual Intel Xeon or faster recommended)
    -          2GB RAM ( 4GB recommended)
    -          1Gb Ethernet card

    Hi,
    The number of concurrent users really depends on your setup.
    You might want to read the blogpost from the FMS PM on this at: http://blogs.adobe.com/ktowes/2008/08/breaking_1gbps_on_flash_media.html
    "I’ve received a lot of requests lately about how much media can be delivered through Flash Media Server (FMS). As you may or may not know, FMS is held to the same limitations as most other streaming or HTTP servers, that is the available bandwidth, disk speed, memory and CPU power on a single server. When we introduced Flash Media Server 3 we increased the performance significantly to allow you to take full advantage of hardware and ultimately help to reduce the total cost of ownership. ........... read on"
    Greetz,
    Klaasjan

  • I have a presentation to make to a customer and need to know how many educational apps are there for the iPad/iPod?

    I have a presentation to make to a customer and need to know how many educational apps are there for the iPad/iPod? More specifically special education apps.
    Thanks

    Keep in mind as well that not all apps are "created equal".  Some are really good, and others are not very good.  You might also want to look at some education sites for recommendations.  An example of a general iPads in education forum is
    http://ipadeducators.ning.com/
    but I imagine some exist for special education needs as well.  Our healthcare organization is using some apps for working with autistic children and find them very helpful. 

  • How many concurrent users on a FMS?

    We want to stream live Town Hall meetings with the majority
    of the users viewing it from our inTRAnet. 320x240, 30fps, Dual 2.8
    GHz, 4 GB widows server. Anybody with similiar setup using FIMS to
    service 200 or 500 concurrent users? We have two campuses and I
    need to know if I will need to spec a second server if we get above
    a certain number. How many concurrent users can I supprot with the
    above configuration? Thanks

    FMS should be able to handle your 500 clients with no problem
    using the configuration you mentioned (some of my apps routinely
    see many times more than that on a similar server). I use a
    slightly beefier processor in my boxes though... quad core
    Kentsfield Xeon / 4GB ram.
    That said, also make sure you have enough throughput at your
    NIC to handle the traffic. At 500 concurrent clients, a low
    bandwidth stream of 300kbps puts you at about 150Mbps, so you'll
    want to run the numbers before you commit to a single serves in
    case you can't get enough network juice to a single box.

  • How many SECONDARY INDEXES are created for CLUSTER TABLES?

    how many SECONDARY INDEXES are created for CLUSTER TABLES?
    please explain.

    There seems to be some kind of misunderstanding here. You cannot create a secondary index on a cluster table. A cluster table does not exist as a separate physical table in the database; it is part of a "physical cluster". In the case of BSEG for instance, the physical cluster is RFBLG. The only fields of the cluster table that also exist as fields of the physical cluster are the leading fields of the primary key. Taking again BSEG as the example, the primary key includes the fields MANDT, BUKRS, BELNR, GJAHR, BUZEI. If you look at the structure of the RFBLG table, you will see that it has primary key fields MANDT, BUKRS, BELNR, GJAHR, PAGENO. The first four fields are those that all cluster tables inside BSEG have in common. The fifth field, PAGENO, is a "technical" field giving the sequence number of the current record in the series of cluster records sharing the same primary key.
    All the "functional" fields of the cluster table (for BSEG this is field BUZEI and everything beyond that) exist only inside a raw binary object. The database does not know about these fields, it only sees the raw object (the field VARDATA of the physical cluster). Since the field does not exist in the database, it is impossible to create a secondary index on it. If you try to create a secondary index on a cluster table in transaction SE11, you will therefore rightly get the error "Index maintenance only possible for transparent tables".
    Theoretically you could get around this by converting the cluster table to a transparent table. You can do this in the SAP dictionary. However, in practice this is almost never a good solution. The table becomes much larger (clusters are compressed) and you lose the advantage that related records are stored close to each other (the main reason for having cluster tables in the first place). Apart from the performance and disk space hit, converting a big cluster table like BSEG to transparent would take extremely long.
    In cases where "indexing" of fields of a cluster table is worthwhile, SAP has constructed "indexing tables" around the cluster. For example, around BSEG there are transparent tables like BSIS, BSAS, etc. Other clusters normally do not have this, but that simply means there is no reason for having it. I have worked with the SAP dictionary for over 12 years and I have never met a single case where it was necessary to convert a cluster to transparent.
    If you try to select on specific values of a non-transparent field in a cluster without also specifying selections for the primary key, then the database will have to do a serial read of the whole physical cluster (and the ABAP DB interface will have to decompress every single record to extract the fields). The performance of that is monstrous -- maybe that was the reason of your question. However, the solution then is (in the case of BSEG) to query via one of the index tables (where you are free to create secondary indexes since those tables are transparent).

  • How many itunes accounts are allowed per computer?

    Hi, I'm trying to figure out the best way to handle configuring all 80 of the iPads my business is purchasing.  I know there is a limit of 10 devices per iTunes account.  How many iTunes accounts are permitted per computer? I tried to just create 8 apple ids, which I was able to do online.  But when I try to sign in to those on iTunes, once I get to the part where I verify with a credit card, I can not get past the 3rd one. I have previously signed in with 2 other accounts on my machine, so I'm wondering if there is a limit of 5 accounts per computer.  Can anyone verify?  If that's true, what suggestions do you have for how to get around or best manage this situation?
    I'm not as much of a techie as I should be.. but thanks in advance for your help!!

    Hi allisonwfrom nc,
    The limit you are referring to is for a single personal Apple ID (not for multiple users) that is allowed to be associated with a total of 10 devices (up to 5 computers and the rest on iOS devices). Example you can have 5 computers and 5 iOS devices, 3 computers and 7 iOS devices, but not 6 computers and 4 iOS devices.
    From http://www.apple.com/legal/itunes/us/terms.html#SERVICE
    Association of Associated Devices is subject to the following terms:
    i) You may auto-download iTunes Auto-Delivery Content or download previously-purchased iTunes Eligible Content from an Account on up to 10 Associated Devices, provided no more than 5 are iTunes-authorized computers.
    Again this is for a single user. For multiple users like in schools or businesses you need to use VPP to purchase multiple licenses. http://www.apple.com/business/vpp/
    APP STORE PRODUCT USAGE RULES
    ( i )If you are an individual acting in your personal capacity, you may download and sync an App Store Product for personal, noncommercial use on any iOS Device you own or control.
    ( ii ) If you are a commercial enterprise or educational institution, you may download and sync an App Store Product for use by either (a) a single individual on one or more iOS Devices used by that individual that you own or control or (b) multiple individuals, on a single shared iOS Device you own or control. For example, a single employee may use an App Store Product on both the employee's iPhone and iPad, or multiple students may serially use an App Store Product on a single iPad located at a resource center or library. For the sake of clarity, each iOS Device used serially by multiple users requires a separate license.
    If you are an educational institution or business you will want to enroll in Apple's Volume Purchase Program (VPP) which allows a single Apple ID to purchase multiple licenses of an app.
    There is a free OS X program called Apple Configurator that you can use to distribute the VPP codes to your fleet of iPads. Apple Configurator uses a single Apple ID to install apps on your iPads. Configurator will also allow you to install free apps on multiple iPads using a single Apple ID.
    There are a few things I recommend you do to get started:
    First I would watch the iOS Deployment Model Videos on the left side of this page:
    http://www.apple.com/education/resources/information-technology.html
    Then I recommend you read through these two guides:
    iOS 6 Education Deployment Guide
    http://images.apple.com/education/docs/ios_6_education_deployment_guide.pdf
    Apple Configurator Help Guide
    http://help.apple.com/configurator/mac/1.0/
    This will give you a solid foundation for managing iPads with Apple Configurator. Once you read through these guides you will likely have more specific questions that you can post to these forums.
    Hope this answers your question!
    ~Joe

  • Find out how many remote users are login in to my system.

    Hi
    i just want to know how many no of remote users are logged in to my system and their information.
    how can i restrict them. how to limit the remote connections.
    how many ftp user's are connected to my system.
    can any one send me documents which contain brief information for about questions.

    use rusers and finger commands to check the users remotely login
    form limitint the access of user u need to create $HOME/hosts.equiv and $HOME/.rhosts and making entry for those users who u want to allow

  • How many primary key fields  allowed for one table?

    hi,
    when i creating a table , how many primary key fields are allowed for one table.
    please any one give ans
    thanks

    Just checked it,  Its 255, not 155.  You can have as many key fields as you want, but you can not go over the 255 byte length for the total of all key fields.  You will get a warning for over 120, as it says that there is limited functionality with a key over 120 in length.
    Again, this is a total length of all key fields.
    Regards,
    Rich Heilman

  • What is account for logon for first Azure virtual machine?

    I selected build a server farm, but I don't remembering any input for administrator account. How do I setup administrator account for my first Azure virtual machine after it was automagically built as part of a server farm option?

    I am assuming you are talking about SharePoint server farm. 
    After you select New->SharePoint Server Farm, Azure asks you to type in the resource name and then it asks you for usernames and passwords for each virtual machines local administrator.  These are the usernames which you use to access these machines.
    Regards

  • How to know how many child tables are present for a parent table

    hi all,
    i created a table USERS in db user pavan (pavan.users (id primary key) ).
    and child tables are may be in the same user pavan or in other users of database also.
    for the other users i given relative grant permissions to access this USERS table and maintain relation to it.
    now, my requirement is how to check the number of references to pavan.users.id
    how many tables are dependent on it.
    thanks in advance.
    regards
    pavan

    Try this
    select a.owner,
           a.constraint_name,
           a.column_name,
           a.table_name,
           c.table_name Referenced_table,
           d.column_name referenced_column
    from
            all_cons_columns a,
            all_constraints b,
            all_constraints c,
            all_cons_columns d
    where a.table_name=b.table_name
    and a.constraint_name=b.constraint_name       
    and b.constraint_type='R'
    and b.r_constraint_name=c.constraint_name
    and c.constraint_name=d.constraint_name
    and a.owner='PAVAN'
    and c.table_name='USERS'
    and d.column_name='ID'

  • How to improve application scalabilty hosted in windows azure virtual machine

    Hi,
    We are going to build and host an application in VM in azure environment where could receive a huge numeber of requests to the server(applicatio in IIS) . How can we handle the scalabilty of application . Is azure has
    any predefined supports ??
    With Regards,
    Selvam.M

    Azure offer both internal and external load balancing capabilities.
    It offers load balaning between virtual machines under the same load balance set.
    Check here
    http://azure.microsoft.com/en-us/documentation/articles/virtual-machines-load-balance/
    You can create multiple Virtual machines hosting your IIS websites than use the service load balanced IP.
    For the Virtual machines performances, you can benefit from the auto-scale Azure capabilities. Autoscale will automatically turn on virtual machines when some performance thresholds are crosses (Memory, CPU usage) and turn them off when it's calm again.
    Look here
    http://azure.microsoft.com/en-us/documentation/articles/cloud-services-how-to-scale/
    Only Standard virtual machines offer these capabilities, Basic VMs do not
    Regards, Samir Farhat Infrastructure and Virtualization Consultant || Virtualization, Cloud, Azure ? Follow and Ask here https://buildwindows.wordpress.com

  • HOW MANY VERIZON USERS ARE DISAPPOINTED LIKE ME?

    Verizon's customer service is horrible they cant keep their word when they say they will call you back. I cant believe that the company with the BEST internet service and technology doesn't have an email or phone to file an official complaint.

    I am disappointed because I feel I was misled to remain a customer. Most recently regarding this supposed XLTE roll out. I have lived in Tempe,AZ for two years now and I have experienced slow speeds, fluctuating signal (4G to 3G often)...just poor service and it seems to only get worse over time. Over the last 2 years there have been numerous trouble tickets, device exchanges and any trouble shooting method you can think of and the fact there has been no improvement despite all those efforts, it reveals just how bad their network really is here BUT I stayed with Verizon because I was told over and over the network will improve and Verizon seems to work well everywhere else (NM, NV, So CA) I was always told its a 'network traffic' issue that will be resolved soon.
    Now that XLTE is supposedly upon us, I have seen no improvement and was told after the 'roll out' that I live in a 'marginal area'? Really? Could not tell me that two years ago? Wasn't this XLTE supposed to be the cure? You mean to tell me I went thru probably hundreds of factory resets and trouble shooting methods on each new/replaced devices for no reason? I purchased new devices and extended contracts because I was led to believe this manufacturers antennas are better than my phone at the time? I resisted joining another network because I was told over and over it is not a network issue, it is my phone? I continued to pay for numerous lines each month for 2 years because of ETF's and NOW that I am down to two lines you're willing to waive the ETF's because of my marginal area status?
    Felt like I was ripped off for the last two years...paying top dollar for service that hardly worked where I spent about 90% of my time.

  • How many portal roles are needed for multi-country ESS?

    we are implementing ESS for multiple countries.
    has anybody tried to use one portal role for all countries?
    the new ESS business package comes with one ESS portal role that has content for all countries. I was wondering if we can use this role as-is (after making a copy of course) to present content for all countries, instead of creating one portal role for each country.
    Regards,
    Tiberiu

    in Employee Self-Service > General Settings > Homepage for Self-Services > Resources> Define Resources
    did you have to enter the PCD path to the country-specific iView?
    In that path you associate any resource to a Portal Page. Just change the PCD Path for custom Pages only.
    Only the services are "country-specific" (because they have assigned a MOLGA). Follow the path from my previous answer to add any country-specific app.
    the standard installation does not have the PCD path populated, it has the name WebDynpro application component instead
    This is common issue. Depending on how the installation/upgrade was performed, the resources table is populated or not. But if is not populated, the "URLof PCD Page" property is taken from client 000. In my last implementation, i expected this issue, but i not populate manually this property and everything works fine.
    Kind regards

Maybe you are looking for

  • Adding two expressions in ADF Groovy

    Hi All, I want to add two expressions in Groovy given as below. Is a Groovy reference link available for starters. Basically the below expression gives eg: "3+4" instead of 7. #{bindings.DefibrillationNoAmsShocks.inputValue}+#{bindings.Defibrillation

  • Problem with XK99 Mass Load Maintenance

    Hi all, While trying to use XK99 for Mass Load Maintenance, to mark suppliers for deletion at Co Code level (LFB1-LOEVM), we're getting the error 'Changes could not be saved' and we couldn't find the reason why. Can you give us a hand on this to figu

  • 4620 all in one control panel non responsive

    4620 all in one printer front control panel buttons non-responsive.  The panel shows information but nothing happens when pushing buttons.  So I can not copy, etc.  I can print from the computer which is directly hooked up.  The wireless light is on

  • How do i add photos from windows 7 pc to iphone

    how do i add photos from windows 7 pc to iphone

  • When creating PDFs from WORD 2010 I cannot get the TOC heading entries as hyperlinks

    When creating PDFs from WORD 2010 I cannot get the TOC heading entries as hyperlinks. I used to be able to do this in WORD 2003. I tried to create a PDF from Acrobat by selecting File > Create PDF >navigate to the WORD file > select three checkboxes