Wednesday, December 1, 2010

Citrix EdgeSight : Reporting Services Error

EdgeSight 5.3 has been implemented for XenApp 6 environment on Windows 2008 R2. While extracting XenApp summary it was throwing Reporting service error.

image

We looked at Reporting service on 2008 SQL server which was hosted on another windows server ,was working fine. Checked the link http://<localdb severver>/ReportServer and that also was fine. We reconfigure reporting services. We decided to enable remote errors using following steps

________________________________________
1.    Create a text file and copy the following script into the file.
Copy
Public Sub Main()
  Dim P As New [Property]()
  P.Name = "EnableRemoteErrors"
  P.Value = True
  Dim Properties(0) As [Property]
  Properties(0) = P
  Try
    rs.SetSystemProperties(Properties)
    Console.WriteLine("Remote errors enabled.")
  Catch SE As SoapException
    Console.WriteLine(SE.Detail.OuterXml)
  End Try
End Sub
2.    Save the file as EnableRemoteErrors.rss.
3.    Click Start, point to Run, type cmd, and click OK to open a command prompt window.
4.    Navigate to the directory that contains the .rss file you just created.
5.    Type the following command line, replacing servername with the actual name of your server:
Copy
rs -i EnableRemoteErrors.rss -s
http://servername/ReportServer

With this I rerun the report and found following error . This gave me more elaborated error message .This help us to troubleshoot further.

image

We realize something wrong with permission . We started looking at SQL server and set following permission.

image

We rerun the report and we finally got the report

image

Tuesday, November 23, 2010

How to License retail Branch Repeater VPX

Branch Repeater VPX in retail environment always get installed in remote mode . You cannot install license file on VPX locally and you need to use your existing license server. This  blogs  will guide you how to find out host ID of your license server  and then download lic file.
1.    To start with you need to find out host ID of the existing license server . For that go to the following path as shown below and run lmhostid command. This will give you host ID.

image

2.    Once you have the host ID login to the My Citrix page . Select  following

image

3.    Select  Activate /Allocate from dropdown. This will bring the list of product which is allocated for the user. Highlight BR VPX and click on Filter product .

image

4.    Assign the quantity and supply the hostname gather from step 1.

image

5.    License allocation will be completed and it will prompt to download lic file.

image

6.    Import the LIC file under My files of license server. Restart the license server and it will reflect BR license under Dashboard of License page

image

7.    Login to management page of BR and select Manage license . Check the box of remote and hit apply

image

8.    Please wait till it configure the license server .

image

9.    Once it is completed it will shows as following

image

10.    This is fully licensed for 45M/S

image

Friday, October 29, 2010

XenApp6: "Unknown error occurred: error code 0x8200003e"

I tried publishing new application on XenApp 6.0 on windows 2008 R2 and started giving error that configuration database is not available . I gave permission to citrix service under DeCOM for all the local DCOM user but still I was unable to make changes to XenApp Farm. I then found this Citrix forum discussion, but this did not work either.

Finally I found Citrix IMA service was set to start with local service account . I set to start with Network account. I re-run the Citrix configuration database and was finally able to create and publish application in XenApp farm.

Wednesday, October 27, 2010

Tuesday, October 26, 2010

XenApp 6: “Disable Internet Explorer Enhanced Security Configuration” and “Set up Windows Internet Explorer 8 Wizard” for Windows Server 2008

When you publish IE on XenApp 6.0 on Windows 2008 R2 these two will bother you a lot . To disable these feature

  • Go to Start and click on “Server Manager”
  • Click on “Configure IE ESC” located on the right-hand section of the window.
  • The Internet Enhanced Security Settings page will be displayed. Disable necessary options. IE ESC is now disabled
  • image

    Second setting which will bother you is

    image

     

    To disable this

    Go to a GPO then pick computer or user then Policies (in Vista / 2008 and Windows 7) -> Administrative Templates -> Windows Components -> Internet Explorer

    image

     

    The reason for publishing this article is to make you spend less time googling :)