Thursday, December 2, 2010
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.
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.
We realize something wrong with permission . We started looking at SQL server and set following permission.
We rerun the report and we finally got the report
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.
2. Once you have the host ID login to the My Citrix page . Select following
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 .
4. Assign the quantity and supply the hostname gather from step 1.
5. License allocation will be completed and it will prompt to download lic file.
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
7. Login to management page of BR and select Manage license . Check the box of remote and hit apply
8. Please wait till it configure the license server .
9. Once it is completed it will shows as following
10. This is fully licensed for 45M/S
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.
