Jump to content
  • 0

Impossible to connect with Administration Console


Jeremy RASTOUIL

Question

Hi,

 

When I try to access at the Citrix WEM Administration Console, I click on Connect and I have the following error message:

 

"Error while connecting to the specified Infrastructure Server!" 

 

I try to use the console remotely and directly on WEM broker server but i have the same message.

 

Fortunately,  Citrix servers can contact the WEM broker, so no disruption ;)

Unfortunately, I can't manage WEM :(

 

Do you know what append?

 

Regards,

Jérémy

post-12504018-0-84275200-1499096478_thumb.png

Link to comment

12 answers to this question

Recommended Posts

  • 1

Hi Jeremy

 

I had the same error because of wrong user entries in the database.

 

Try the following:

Connect to the DB -> select * from VUEMUseres where name ='\'

 

If the query has any results, run the following commands to delete the entries

 

Delete from VUEMUserstatistics where userid='X'

Delete from VUEMUsers where idUSer='X'

 

Hope that helps

  • Like 5
Link to comment
  • 0

Same Error here after upgrade to WEM 1903

Solution from Enrico works fine.

 

Run the following query on the VUEM database:
SELECT * FROM VUEMUsers WHERE Name=’\’

This will return the user statistic recording with the corrupt SID.

Notice the UserId!

Once you have identified the recording, you will need to run the following requests to delete it:

 

DELETE FROM VUEMUserStatistics WHERE UserId=’X’

DELETE FROM VUEMUsers WHERE IdUser=’X’

 

Where X is the UserId of the recording with the corrupted SID.

Link to comment
  • 0
On 6/5/2019 at 5:58 PM, Detlev Koch said:

Same Error here after upgrade to WEM 1903

Solution from Enrico works fine.

 

Run the following query on the VUEM database:
SELECT * FROM VUEMUsers WHERE Name=’\’

This will return the user statistic recording with the corrupt SID.

Notice the UserId!

Once you have identified the recording, you will need to run the following requests to delete it:

 

DELETE FROM VUEMUserStatistics WHERE UserId=’X’

DELETE FROM VUEMUsers WHERE IdUser=’X’

 

Where X is the UserId of the recording with the corrupted SID.

 

 

Minor correction: The correct SQL query is as follows. Refer to https://support.citrix.com/article/CTX219045

 

SELECT * FROM VUEMUsers WHERE Name LIKE '%\%'

 

 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...