SRS Confusion in VDI -3

Hi Everyone,
I have used VDI 2 with VMWare Infrastructure 3. Now VDI 3 has been released.
I have a great confusion after reading its all documentation.and i will be very grateful if someone can clear it.
In VDI 2, SRS and VDC work almost total separately.
A SRS Servers Group replicates its database separately, has its own way to configure DHCP range + SRS Ip addresses. Where as when ive read all the documentaion of VDI i havent found configuration regarding howto plan for DHCP ranges etc.
Is VDI 3 using MySQL databse to store all SRS related configuration ?
How to do DHCP configuration in VDI 3?
OR we still need to configure SRS separately in VDI 3 ? (which has not been mentioned in docs)
Im really confused about it.
Thanks and Regards
usman

The main change between VDI 2 and VDI 3 is the installation/configuration experience. In VDI 2 you had to manually install and configure different pieces of software (SRSS, SRWC, and VDC) and the whole process was complex and error-prone (at least for customers new to SRS and VDI). Thus we tried to simplify things here and offer now a single out of the box experience for the whole installation/configuration story.
That said, in VDI 3 there is no need anymore to install SRSS and SRWC manually before installing VDC. Instead, everything is installed automatically using a single installation script (vda-install). We also offer a configuration script (vda-config) that configures the various pieces for common usage scenarios. It is still possible to adapt or fine tune things later using the usual SRSS commands.
There have been no changes to the SRS product itself. Thus SRS still uses its own LDAP-based datastore for storing configuration settings specific to SRS. However, VDC (aka VDI core) now takes advantage of a full blown MySQL database for storing settings specific to VDI. This includes desktop pool settings, desktop assignments, etc. - in VDI 2 these settings have been stored in the SRS datastore, but this created several issues. In VDI 3 the read/write cycles/frequency are higher compared to VDI 2 and thus an LDAP based datastore was no longer the best suitable choice.
So coming back to your questions:
1. "Is VDI 3 using MySQL databse to store all SRS related configuration ?"
=> No, all SRS related configuration is still stored in the LDAP-based SRS datastore - also replication of the SRS configuration data happens as before.
2. "How to do DHCP configuration in VDI 3?"
=> You first install the VDI 3 product using vda-install and vda-config as described in the docs. This will also setup SRS and configures the SRS failover group and Kiosk settings. You can then adapt things as needed using the normal SRSS commands. For example, use utadm -a <interface name> to configure a dedicated interconnect for the Sun Ray DTUs. This will also ask you for the desired DHCP settings.
3. "OR we still need to configure SRS separately in VDI 3 ? (which has not been mentioned in docs)"
=> A separate installation of SRS is no longer needed. In fact we require that SRSS and SRWC are NOT installed/configured when starting the VDI 3 installation. The SRSS/SRWC parts are automatically setup as part of the VDI 3 install/configuration script.
Hope that makes things clearer.
- Klaus

Similar Messages

  • How to use Sunray  without VDI or VMware View Manager

    There is no VDI or VMware View Manager in my test environment. Only srss 4.2 and srwc 2.2 has been installed.
    Now i have 5 sunray client and 5 Windows XP VM. How can I let every user use their Windows XP VM in this environment and can enable USB redirection?
    In page http://wikis.sun.com/display/SRWC2dot2/Managing+USB+Device+Redirection+%28All+Topics%29
    Supported Configurations
    Configuration
    SRS 5 (SRSS 4.2, SRWC 2.2) and Sun Ray Connector Kiosk Session
    Description
    Supports connection to Windows desktop using the Kiosk session.
    My question is How to let mutipl-user use it in this config
    The following is my settings and all users now can use their own Windows XP but USB redirection cannot work
    Select Common Desktop Environment (Obsolete) in Kiosk mode add an application:
    cam_script.windows_connector,
    #!/bin/ksh
    # Script to map smartcard token to individual VM using either
    # the "User Name" or "Other Info" field of the output from
    # utuser -p <token>
    # Look at output from utuser -p ${SUN_SUNRAY_TOKEN} and grab hostname
    # % utuser -p user.1140788210-7053
    # Current Properties:
    # User Name = tester5
    # Other Info = host
    # Server Name = localhost
    # Server Port = 7007
    # Logical Token = user.1140788210-7053
    # User Created = 02/24/2006 13:36:50
    # Token Enabled?
    # Payflex.500af8ad00130100 Yes
    # Currently Logged In:
    # Current Desktop = 0003bad7566e
    # Desktop Location =
    # Logged In Since = 02/24/2006 13:36:58
    # Use "User Name" field as hostname of VM to connect to
    #VMHOST=`/opt/SUNWut/sbin/utuser -p ${SUN_SUNRAY_TOKEN} | /usr/bin/grep "User Name" | awk '{ print $4 }'`
    # Use "Other Info" field as hostname of VM to connect to
    #VMHOST=`/opt/SUNWut/sbin/utuser -p ${SUN_SUNRAY_TOKEN} | /usr/bin/grep "Other Info" | awk '{ print $4 }'`
    WinHOST=`/opt/SUNWut/sbin/utuser -p ${SUN_SUNRAY_TOKEN} | /usr/bin/grep "Other Info" | awk '{ print $4 }'`
    # Could probably do a ping test here and pop up dialogue
    # about getting support to check the availability of the
    # machine (might event be able to use VC API to power up VM?)
    # if it doesn't respond to ping. Could use something like
    # dterror.ds, could also pop up different dialogue
    # if VMHOST is not set
    COLOUR_DEPTH=16
    # If using 24bit need registry change under Windows XP
    #COLOUR_DEPTH=24
    # Fix F11 and F12
    #/usr/openwin/bin/xmodmap -e 'keycode 75 = F11'
    #/usr/openwin/bin/xmodmap -e 'keycode 76 = F12'
    # Fix alt & print screen
    #/usr/openwin/bin/xmodmap -e 'keycode 77 = 0xff62'
    # Turn on numlock
    /usr/openwin/bin/xset led 1
    if [ "${WinHOST}" = "" ]; then
         #dterror.ds "Your Windows Machine can not be determined.\n\nPlease contact support and ask for smartcard \n\n${SUN_SUNRAY_TOKEN}\n\nto be associated to a Windows Machine" "Smartcard not configured" "ERROR"
         WinHOST="Windows_default"
    fi
    # Run Windows Connector in full screen mode at appropriate colour depth with sound redirection
    # Disable the windows pulldown header in full-screen mode
    # RDP Window Attributes options to disable are:
    # -D wallpaper
    # -D fullwindowdrag
    # -D menuanimations
    # -D theming
    # -D cursorshadow
    # -D cursorsettings
    /opt/SUNWuttsc/bin/uttsc -mb -A ${COLOUR_DEPTH} -r sound:high -u "" ${WinHOST}
    #if [ "$?" = "0" ]; then
    #     dterror.ds "Logging Out..." "Log Out" "OK"
    #else
    #     dterror.ds "Your Windows Machine ${VMHOST} is not visible on the network.\n\nIf you have just restarted it please wait a minute and try again\nIf you still have problems get help" "Windows VM is not available" "OK"     
    #fi
    # End of CAM script
    Then add IP address in other information of Token.

    Meta Kiosk would certainly do what you need and the USB pass through works.
    http://blogs.sun.com/danielc/entry/meta_kiosk_how_to_run
    I think the problem you are running into is that you are using uttsc inside a Solaris environment as an app, looks like CDE, which isn't being supported to my knowledge to avoid conflicts between the two desktops. It is designed to work out of the box with SRWC kiosk mode.
    The undocumented way to turn it on is to turn usb on by adding -r USB:on as an argument.

  • Problem in creating Saved Result Set (SRS) in OBIEE 10.1.3.4

    Hi,
    We have migrated Siebel Analytincs 7.8.5 to OBIEE 10.1.3.4, and we are now unable to create any SRS from OBIEE though we can create Segment and marketing cache for the segment.
    We did the following steps -
    1. Unisntall Siebel Analytincs 7.8.5
    2. Install OBIEE 10.1.3.4
    3. Use MIGRATE tool (sawmigrate) to migrate RPD & WEBCAT
    4. We have ALTERed the SRS tables - M_SR_HEADER, M_SR_ACCOUNT (as in OBIEE version there are many new columns have been added)
    5. We passed GLOBAL CONSISTENCY in the RPD
    6. We followed the steps in the document *"Oracle®Marketing Segmentation Guide Version 10.1.3.4 July 2008"*
    7. We created a Saved Result Set Format as instructed in the document - here we are very confused to select the list of columns - we don't know what should be the excat source / format
    8. Then we click the SRS create button
    9. We got the below error -
    Error Codes: QS2QOLYY:GDL67CY9:IHVF6OM7:OPR4ONWY:U9IM8TAC
    Error in getting cursor for WorkNode (Id:0)
    Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    *State: 08004. Code: 10018. [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused. [nQSError: 43001] Authentication failed for Administrator in repository Star: invalid user/password. (08004)*
    Can anyone help us to resolve the issue ?
    A quick response is much much appreciated.
    Many Thanks,
    Prasanta

    Hi,
    It seems like you didnt setup the Administrator user for Saved Result Sets as it mentioned in the Marketing Segmentation Guide.
    Here is an extract from the guide:
    Setting Up the Web Administrator for Managing Cache and Saved Result Sets
    Some queries issued by the segmentation engine require the use of the Execute Physical stored
    procedure. These queries include delete statements on the cache, delete statements on the saved
    result sets, and insert statements for the cache and saved result set. The Execute Physical stored
    procedure must be run by a user with administrator privileges. The administrator user is set up in
    the instanceconfig.xml file.
    NOTE: The BI Administrator password and login parameters are case sensitive.
    To set up the administrative user in the instanceconfig.xml file
    1 Open a command shell and navigate to the <OracleBI>/web/bin, where <OracleBI> represents
    the root directory of the installation.
    2 Execute the following command:
    cryptotools credstore -add -infile <OracleBIData>/web/config/credentialstore.xml
    3 When prompted, enter the following values:
    Credential Alias: admin
    Username: Administrator
    Password: <enter Admin password here>
    Do you want to encrypt the password? y
    Passphrase for encryption: <password >
    Do you want to write the passphrase to the xml? n
    File "<OracleBIData>/web/config/credentialstore.xml" exists. Do you want to overwrite it? y
    4 Open the credentialstore.xml file and verify that the following section has been created:
    <sawcs:credential type="usernamePassword" alias=“admin">
    <sawcs:username> Administrator </sawcs:username>
    <sawcs:password>
    <xenc:EncryptedData>

  • Very Slow VDI Client Login Time

    Hi,
    My environment contains two Hyper-V Servers for DCs, Connection Broker, RD-Web, and two Hyper-V servers as virtualization host to thin clients. All Hyper-V servers are only 35% utilized and all client VMs don't have a performance issue.
    After setting up the roles and creating the "Personalized Pools", I open the RD-Web, click on the collection and here it takes a very long time in securing connection part, then a warning message appears for the connection broker self-signed certificate,
    I accept it and again a very long time to open the VM.
    After searching the internet I figured out that I should install "PFX" certificates for the connection broker (SSO, Publisher). In my environment, we don't use a public certificate from trusted root CAs, however, we have our own "Enterprise
    Root CA".
    I then figured that I should create a certificate with the following attributes:
    Advanced Key Usage: Server Authentication, Client Authentication
    Key Usage: Data encipherment, Digital Signature, Key Agreement
    I created the certificate and imported it to the RD CB, however, the "securing connection" part was even slower than before, so I duplicated the "Computer" certificate, and configured 1024 bit certificate instead of the old one "2048".
    The "securing connection" part is taking half the time now, however it is still very long "+60 seconds" to open the VM.
    I still suspect that it is a certificate issue and not sure if I have done the correct certificate.
    Would anyone help in this case and providing the correct steps to install a certificate for the RD CB from internal CA.
    Thanks.

    Hi,
    To avoid confusion, let's focus on the same thread.
    http://social.technet.microsoft.com/Forums/en-US/17fb24d7-61a7-49be-83b3-35bd9d8b6863/very-slow-vdi-login-time?forum=winserverTS
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • DTUs freezing randomly in XP VDI sessions

    Software:
    VDI 3.2 (upgraded from 3.1) on three Solaris 10 10/09 x64 servers in the recommended HA bundled MySQL config (primary, first secondary, second secondary)
    Desktop provider is VSphere 4.0.
    This issue primarily affects a VDI pool of ~65 Windows XP 32-bit desktops.
    Any affected desktops already have the Oracle VDI Tools and SunRay Windows Components which were bundled with VDI 3.2.
    Hardware:
    Sun Ray 2 and 2FS models, upgraded with the firmware provided with the VDI 3.2 release (GUI4.2_140993-03_2010.06.21.19.00)
    Smartcards are mandated for hardware Sun Rays.
    In the last month or so, we have started seeing more and more random "freezing" of sessions whilst users are already logged in and working - users are typically just using Office, Firefox, Thunderbird etc. - nothing complicated!
    Essentially, their screen will randomly freeze completely and the mouse pointer cannot be moved. The only way to fix it is to remove the card or kill the session with CTRL-ALT-DEL-DEL-Bkspc-Bkspc.
    Upon doing so, the session comes back to life immediately and they can continue working.
    Here is a portion from /var/opt/SUNWut/log/messages which is produced at the moment the session freezes on the server that happens to be hosting the session (I've changed the server hostname, username and domain name for security reasons):
    Dec 14 10:56:57 vdiserver utauthd: [ID 794400 user.info] SessionManager0 NOTICE: EMPTY: ACTIVE session
    Dec 14 10:56:57 vdiserver Sun Ray Connector proxy:[21218]: [ID 855542 user.error] Child closed socket prematurely, session shutdown
    Dec 14 10:56:57 vdiserver kiosk:vda[22715]: [ID 702911 user.error] /opt/SUNWuttsc/bin/uttsc exited with error code 141 - exiting
    Dec 14 10:56:58 vdiserver kioskcritd[20958]: [ID 422571 user.info] Info: a critical application has exited.
    Dec 14 10:56:58 vdiserver kioskcritd[20958]: [ID 342793 user.info] Terminating Kiosk Primary Session ( pid=21106 )
    Dec 14 10:56:58 vdiserver kioskcritd[20958]: [ID 308018 user.info] kioskcritd stopped
    Dec 14 10:57:04 vdiserver dtlogin[22800]: [ID 118685 user.info] pam_sunray_amgh::[DPY=6] AMGH_SUMMARY: token=user.1290677160-1567, username=, AMGH_Done?=NO(Local Session), Details=AMGH is not configured., AMGH_Target=*NONE*
    Dec 14 10:57:04 vdiserver dtlogin[22800]: [ID 976841 user.info] pam_kiosk: pam_sm_authenticate: Initiating Kiosk session with user utku35
    Dec 14 10:57:05 vdiserver kioskcritd[22946]: [ID 190395 user.info] kioskcritd started
    Dec 14 10:57:10 vdiserver cacao:default[26773]: [ID 702911 daemon.warning] com.sun.vda.service.client.ClientRequestWorker.run : Failed executing vda-client request: serverList([email protected], token=user.1290677160-1567
    , clientAddress=127.0.0.1): No preferred servers found for [email protected][ExitCode=15]
    Can anyone offer any help? I know about the "no preferred servers found" error, which I think is produced since we're not using the "Global VDI Center" feature - correct?
    The main issue certainly looks to be caused by uttsc, which is simply crashing...
    Any ideas?

    @turbotiga - thanks a lot for all this info. Really helpful.
    A few questions/comments:
    a) Is this information about which patches are already (or not) applied to the full VDI releases published anywhere? I can't see mention of it on any of the wikis - how have you discovered this? It would be great to know this detailed info - for future releases too - e.g. what patches are already rolled into in the SRSS/SRWC components included with VDI 3.1, 3.2, 3.2.1, and which have not been and why? EDIT: Just noticed that the release notes mention that VDI 3.2 includes "SRS 5 Patch 3", whilst 3.2.1 includes "SRS 5 Patch 5" - guess that explains that....
    b)Our suppliers (who also initially installed the systems) had recommended that the versions of SRSS and SRWC etc. that are bundled with the complete VDI packages are included for a reason at that very specific patch level to provide the best matches/compatibility, and that we shouldn't ordinarily install patches for other versions of SRSS etc. against the VDI installation as a whole (I guess unless otherwise instructed to do so from Oracle/Sun). That is why I had assumed that upgrading to 3.2.1 would be a better solution (albeit it will involve considerable downtime compared to patching individual components since it involves taking down the database and rebooting etc.)
    The patches now only seem to be available from the My Oracle Support site (which requires a contract number to access) so it's a moot point anyway since we don't have the rights to get at them any more...are they available from anywhere else?
    I would be very happy to give the installation of patches a go rather than upgrading fully to 3.2.1 in the first instance purely since we can't afford the amount of downtime that a full VDI upgrade produces right at the minute...is it definitely safe to patch our 3.2 installation with later SRSS/SWRC patches (against the recommendations of our suppliers) rather than going the whole hog and upgrading to 3.2.1?
    Edited by: Hutch on 20-Dec-2010 06:03

  • SGD VDI vCenter problem accessing multiple desktops simultaneously

    Hi,
    I am using vCenter as a desktop provider and have created multiple flexible desktop pools in VDI. These desktops pools are then assigned to users in SGD. When accessing these desktops simultaneously through SGD either SGD or VDI gets confused and opens up the wrong desktop. When i open the first desktop from SGD it opens up the correct VM then when i open up another desktop (from a different pool) it opens up the desktop from my previous desktop pool. The name on the Java Window in which the desktop opens up corresponds to the name of the application pool i intend to open however the VM that I login to is from a different pool. I can verify from vCenter that the desktops in the various pools are correct.
    Is it not possible to access multiple desktops from different pools simultaneously or is there something that is possibly setup incorrectly? Any assistance will be greatly appreciated.
    The versions of SGD/VDI/VCenter are:
    SGD Version: 4.5; Build: 20091119205307
    Virtual Desktop Infrastructure 3.2.1 (Build 11)
    vCenter Server 4.1.0 258902
    ESX Server 4.1.0 26047
    Thanks.

  • Confused about standby redo log groups

    hi masters,
    i am little bit confuse about creating redo log group for standby database,as per document number of standby redo group depends on following equation.
    (maximum number of logfiles for each thread + 1) * maximum number of threads
    but i dont know where to fing threads? actually i would like to know about thread in deep.
    how to find current thread?
    thanks and regards
    VD

    is it really possible that we can install standby and primary on same host??
    yes its possible and i have done it many times within the same machine.
    For yours confusion about spfile ,i agree document recommend you to use spfile which is for DG broker handling if you go with DG borker in future only.
    There is no concern spfile using is an integral step for primary and standby database implementation you can go with pfile but good is use spfile.Anyhow you always keep pfile on that basis you created spfile,i said you make an entry within pfile then mount yours standby database with this pfile or you can create spfile from this pfile after adding these parameter within pfile,i said cause you might be adding this parmeter from SQL prompt.
    1. logs are not getting transfered(even i configure listener using net manager)
    2.logs are not getting archived at standby diectory.
    3.'ALTER DATABASE RECOVER MANAGED STANDBY DATABASE DISCONNECT FROM SESSION' NEVER COMPLETE ITS RECOVERY
    4. when tried to open database it always note it 'always' said system datafile is not from sufficiently old backup.
    5.i tried 'alter database recover managed standby database camncel' also.Read yours alert log file and paste the latest log here..
    Khurram

  • SRS Browser Role Cannot Access Shared Data Sources

    I've created some reports using VS and shared data sources and deployed. I can run reports (I'm a domain admin), but users I've given system administrator roles within SRS cannot access shared data sources. However, if I embed the data source, everything
    is fine. I'm pulling data from three different servers, so the shared data sources are somewhat important.  I'm using SQL Native userid/passwords not windows authentication.  Anybody got any ideas?  I'm new to SRS.  Thanks.

    Hi Janetb,
    I’m confused about the meaning of “cannot access shared data sources”. Are you saying the user cannot see the Shared Data Sources in Report Server, but he can render the report well? Or the user cannot render the report well because he have no permission
    to access shared data sources?
    If in this first scenario, means that the role of the user have no permission to View data sources. To fix this issue, we can add View data sources task to the current role in SQL Server Management Studio.
    If in the second scenario, it is so strange. In my test, I add Browser role of the report to one user which has no permission to access the shared data sources, but he can render the report which retrieve data from the shared data sources very well.
    To troubleshooting this issue more efficiently, could you tell us the scenario you occurred and the error message you received? So that we can make further analysis and help you out.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Shared Memory and Memory Paging - VDI 3.2

    Hello
    What metrics have been identified in the performance and optimisation of these new features for VDI 3.2 ?
    We are looking for substantiated indicators with respect to builds for sites of various user-base sizes v's SunRays on desks.
    Regards
    Jeremy.

    good Question!
    Also I'm confused of how much memory is really used and what is shown where (top vs. Desktop provider Info in VDI Admin vs. what I see/assigned in the VDesktop)
    sometimes balooning works like a charm and I can overcommit lots of memory running several desktops. Other times running one single Win7 Desktop (1GB RAM assigned) on a SF4140 /w 8G Ram installed eats up 75% of my memory.
    Right now the Win7 VDesktop I'm using has
    1024 MB assigned by the VDI-Manager with 50% memory sharing
    The manager displays ~ 3,8 GB Used, as the Win7 VBox is the only one Running in an All-in-One configuration and takes roughly 2.2-2.5 GB w/o a running VM, I assume that 1.2 or 1.3 is accounting on the Win7 Wbox
    in top the VBoxHeadless process shows up with 1891MB memory usage
    Which one to trust? Somewhat hard to forecast.
    could someone shed some light on this?
    Regards,
    zoltan

  • VirtualBox 3.2.12 and SRS 5.2.1 compatibility

    Hi all,
    We have an education customer with a home grown VDI environment using the above product versions. From my understanding it would appear these product combinations are incompatible. Is this true ?
    We are seeing the occasionally DTU hang, terrible USB performance and reliability. All sessions are connecting via VRDP using uttsc that comes with SRS 5.2.1. Could this incompatibility be the reason ?
    Any recommendations ?
    Regards,
    Sean

    is done thanks

  • Sun VDI 3.1-EA: "Microsoft Remote Desktop" Provider -- Bug?

    It seems there is a bug in VDI 3.1:
    After having added a VirtualBox desktop provider I also wanted to add a Windows 2003 terminal server as desktop provider, so I go ...
    - https://localhost:1801
    - Desktop Providers
    - Windows Remote Desktop
    - New ...
    - Step 1 ... Next
    - Specify New Host
    ... And now it asks me for this information:
    Host:
    SSL Port: 443
    User Name:
    Password:
    SSL Port? For a Windows 2003 server?
    I am confused ... So I want to check the "Help" tab. The "Help" tab links to this URL:
    https://localhost:1801/vda/faces/jsp/providers/tswizard/NewTSProviderWizard.jsp#
    So guessing from that URL ( ... "NewTSProviderWizard" ...) I'd expect to find information regarding Windows TS servers?
    But the help text reads ".... Enter the hostname or IP address, and administrator credentials for the *+VirtualBox+* host server ... "
    VirtualBox? I wanted to get help with Windows 2003 TS.
    So I'd assume that this is a bug?
    - the "Add Microsoft Remote Desktop" wizard will get you the one for VirtualBox
    - Help text is talking about VirtualBox too
    I assume that this will be fixed before the final release?
    Regards,
    DJ.

    What specifically does your customer object to ?The server being +"touched"+. That's already enough for them. I'm ashamed to admit this ... but I too was a Windows admin once. I was young, stupid and I needed the money. ;-)
    So having been a Windows admin once myself ages ago in my dark past I can fully understand them. One stupid patch, one stupid incompatible product, one silly addon someone somewhere wrote ... and that server dies in a nice ugly "Bluescreen of Death". Or so they think. Because a typical Windows admin spends 90% of their daily job running from one dying Windows server to another dying Windows server the last thing they want is yet another server that is bound to die because one of us unworthy Penguin worshippers dared to install something on it ....
    So NOT having to install anything on that server like with SSGD is perceived as being OK.
    Having to install ANYTHING on that server for which the admin doesn't understand the reasons within 1 second simply is a NO GO for them.
    +"Why doy ou want to install this BS? My RDP connections work tip top without that thing you want to install ... take your hands off my server ... "+
    So ... How do I explain to a very very stressed and hyper-nervous Windows server administrator that I need to install some SSL stuff on his precious Windows 2003 or Windows 2008 installation when SSGD (also from Sun last time I checked ...) didn't need that? And none of his other RDP applications need that?
    How do you explain something like that? YOU CAN'T. The discussion is over even before it can begin. And if their Windows administrators are screaming like mad and panicking that you are about to hose their precious Windows systems then soon enough even their managers (who up to that second were on your side) demand an explanation ... "Why does VDI require that when SSGD didn't require that??"
    In the end it's easier for me to configure an Windows RDP application via SSGD and deliver it that way to the VDI sessions than argue with the customer and their nervous admins about why in the world I now have to touch their servers with this stuff ...
    See what I mean? Yes, I know: I exagerated slightly. Just to give you a feeling of the troubles us people in the frontlines are facing.
    SERIOUSLY:* The RDP-Provider in VDI 3.1 is in need of being re-evaluated and re-designed. Like it or not: But it simply is not going to fly the way it is now. Most Windows admins simply don't want any additional stuff installed on their servers. PERIOD. Because only the Gods know what other things such stuff will break one day ...
    So the RDP provider in VDI 3.1 should look and feel and act exactly like the one in SSGD. If you want to offer RDP-over-SSL: fine, offer it as an option for the lucky few who don't have to argue with their customer about that.
    RIght now it's easier for me to create a Linux VM that auto-boots into a pre-configured "rdesktop" session and then deliver that as a login option to users than to argue with the Windows admins why their precious servers need to be touched ... So yes, I'd say this part of the Sun VDI 3.1 product is in need of a re-design.

  • VDI Core

    Hello,
    I have some questions regarding the VDI Core part:
    - I want to install 4 servers for VDI Core. I run vda-config script on primary server. I can "only" set two secondary servers within this script. What I have to do to configure the fourth server? Do I have to run only the SRSS part with utconfig -k or do I run vda-config again?
    - I want to expand the max number of session (the question when I run vda-config script). How can I do that?
    - I want to set a DNS alias to give to my users when they connect with RDP. To load balance between VDI Core servers, do I have this alias "round robin" between all four servers?
    Thanks
    Laurent

    The SRSS web interface comes up fine and appears identical to the others secondary servers... so that looks good.
    But the VDI admin page doesn't come up right -- I get a Apache tomcat 404 error (404 pulling up the Login.jsp page). What log file might give me details on this error?
    Also, it's difficult to troubleshoot an issue like this because our clients are constantly disconnecting and reconnecting to their desktops... I can't have this server in the SRSS group too long because a few users always end up on it and then they call complaining they can't log in. Is stopping the Sun Ray services on the new host the only way to keep them off it while testing or is there a cleaner way?
    We do use the support.oracle.com, but for some reason our VDI support contract isn't listed in there so we can't place an issue on it... we always end up calling and the people taking the ticket details inevitably record something totally confusing or they just omit most of what we said... then when the Oracle support people contact me, they're very confused and it just starts things off bad. Once we get the support contract showing up properly in the support portal, I'm sure things will be a little better for us.
    thanks again for the help

  • How to prepare MySQL DB for my VDI 3.1 POC

    Dear all,
    I am not really knows about database. My office asked me to setup and do a simple POC based on Sun VDI 3.1.
    I have executed vda-install command and its installed, VDI core, mysql, SRS and others.
    Next action is "Prepare your MySQL database" and this step is before running vda-config.
    Appreciate if anyone could guide me on how to perform a simple MySQL setup for me to use for my POC on VDI 3.1.
    Thanks in advance.

    Hi Ali_Sampras ,
    1. For a POC you might want to go for Evaluation [ option 0 ].
    2. Execute ./vda-install ,reboot your server .
    Once the server is up , execute ./vda-config and select option 0
    You will have an evaluation setup up and running.
    3.
    -> You can use option 1/2 for a production setup ,high availability/fail over purpose i.e if you have 3 or more servers.
    -> option 3 when you have license to use InnodB engine and have only one server.[here before executing ./vda-config you need to install/configure Innodb on the VDI host] .
    -> option 0 when you have a single server and don't require fail over .
    HTH ,
    Udaya

  • Beginner's inquiry on How Oracle VDI product works

    Hi,
    I read some Oracle VDI (OVDI) pages but still don't get the whole picture as to how the OVDI product works and decided to shoot some of my questions here. My questions are as follows.
    Since my users are currently using only Windows7, WindowsXP, and Smartphones... (no Solaris, no Linux)
    Assuming that I installed/configured both OVDI software and storage on either a Sparc or x86_64 box and everything works fine on the OVDI server side,
    My question is:
    Will my users will use their own devices to just bring up something like "Remote Desktop" to connect to the OVDI server and work there? That is, that's how there's nothing to save on the local drive of their laptops and their laptops would be used as if they were thin clients in the old days?
    From the high level picture, I'd like to understand how the server/client works.
    Thanks much in advance for sharing your knowledge!
    - Steve

    Hey Steve,
    I'm not sure I understand the background on some of your questions. By the way, we've been using Oracle VDI for a little over 3 years, and we have about 450 virtual desktops (and thin clients) in production at the moment.
    "do you think that the Oracle VDI solution really gives the benefits of using VDI?" -- the Oracle solution is as effective as any competitor VDI product, perhaps more so in some respects.
    "Not just to follow the IT trend, but from the pragmatic point of view, do you think end-users in corporate businesses would get much more benefits even if it comes with some inconveniences and things that end-users may not like?" -- I think the business has to decide what their goals are with VDI. Is it to make life easier on the user? Is it to reduce IT costs? Is it to improve endpoint security and keep data in the datacenter? Are your users mobile? When we looked at VDI here (a hospital), we needed all those things. I think we came out with nearly all that except for maybe reduced IT costs. Yes, there was some user frustration and confusion early on before they understood how the mobility of VDI could benefit their workflow as they moved through the various buildings here on camps and to their houses. Ultimately I think they accept any minor inconveniences and have come to appreciate what the technology does for them. On the IT side, our lives are much better as well, but our goals early on were more focused on the users (healthcare providers) and their productivity.
    "Also, I'd appreciate your feedback on the cost benefits of implementing/maintaining the OVDI solution (vs. continuing to use the laptops/desktops as standalone boxes) as well. Is it worth introducing it now or is it kind of premature yet and too early?" -- I think you mean to say the OVDC (oracle virtual desktop client software client). Honestly if you have the choice, commit to the VDI experience and buy the Oracle thin clients. They are great... there are no moving parts, no fans, nothing really to break. If someone steals one or "loses" it, who cares? Put in another. We replaced a few hundred desktop computers with them and as a result, our helpdesk staff probably can't even remember how to clone a machine or replace a hard drive. They don't have any of the problems that desktops or laptops have, and there is almost nothing to manage about them compared to a full workstation.
    The OVDC client fills in some gaps where the thin clients leave off... take mobile users for example. We have thin clients in people's offices here, but they obviously don't have them at home. So instead we package the OVDC client and allow them to run it from home over a VPN. Of course, you can send a real physical thin client home with people if you wanted -- they have built-in VPN capability as well.
    Personally, I wouldn't do VDI if you were going to leave all the old workstations and laptops in place. If someone's hard drive dies, you have to go replace it and reinstall the OVDC software... if someone loses their laptop and gets a new one, you have to go install that software again and configure it to look to the VDI servers... If someone gets a virus or malware on their PC and the OVDC client stops working, you have to go fix that PC to get the VDI client working again. None of those things would happen if you had true thin clients in place instead of full client side workstations.
    I hope this helps a bit? If I am confused on something, please let me know. Whatever solution you go with, VDI is definitely ready for primetime, even in 24x7 environments. It will change the way your IT department works, and you might even end up with a few happy users.
    thanks
    daniel

  • Does SRS-X77 support apt-X bluetooth codec?

    Hi, i am looking to buy a wireless speaker and the Sony line of speakers looks awesome. I am however confused by different specification listings for SRS-X77, i am unsure if it supports the apt-X codec.
    This site says it does: https://blog.sony.com/press/29677/
    This site says it doesn't: http://store.sony.com/powerful-portable-wi-fi-bluetooth-speaker-zid27-SRSX77/cat-27-catid-All-Player...
    Can i get a definitive response on apt-X support? And LDAC for that matter as both sites also differ on LDAC support.

    it doesn't seems it does
    http://www.sony.co.uk/electronics/wireless-speakers/srs-x77/specifications
    but do contact Sony directly.
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

Maybe you are looking for