Citrix cloud with VMware on premises login issue - citrix

Esporadically login errors occurred when I'm trying to sign in to citrix cloud(aprox 40% of the attempts). My citrix cloud have configured two on-premises cloud connectors on windows 2019 domain members, this cloud connectors has two interfaces one for OOB and the other for internet(different vlans). Dns is provided by AD server. Event viewer and citrix connection tests on the cloud connectors shows everything OK, no errors. I'm asking some help to debug the problem.

Related

Failed to connect to the BizTalkMgmtDb database from BizTalk Management REST Api's

I am using the BizTalk Feature Pack 2 and enabled the BizTalk Server Management REST API's.
When I tried to use the API to resume a suspended messages getting the below error.
Failed to connect to the BizTalkMgmtDb database on 'serverName'
Unable find any logs. All the services are running with same domain account that is used for app pool identity.
The REST API's were deployed to IIS with custom window domain account.
After disabling the Impersonation in IIS, I am able to call the API's without this error.

Tableau Service Management vs Tableau Server

I am a beginner of Tableau.
I have gone through the Trusted Authentication on Tableau online help.
But I found that to add the web server IP address to https://tsm-computer-name:8850.
And I found that Tableau Server domain and Ip address are also required.
So I just want to know the following questions.
Are Tableau Server and Tableau Service Management on different computers?
If so, where should TSM be installed and how?
How do I create a TSM credential (admin)?
They way I differentiate two, is TSM (Tableau Services Manager) is the backend admin account and is used for configuring and licensing Tableau Server.
The Tableau Server Administrator account is used to administer the content published to Tableau Server, user/ groups and permissions.
TSM is automatically installed when installing Tableau Server, and the account used to log into TSM is typically the account being used to remote into the machine hosting Tableau Server. I found a decent guide using their online help.
https://onlinehelp.tableau.com/current/server/en-us/sign_in_tsm.htm
Also, a good way to verify which user can/is being used for TSM is to try running a TSM command from CLI. For example, running ' TSM Status -v ' should prompt you for a password for X user, this is what you would log into the TSM UI with.
Tableau Services Manager (TSM) replaces multiple tools from previous versions of Tableau Server: Tableau Server Configuration, tabadmin command line, Tableau Server
Monitor, and Manage License Keys.
Online guide gives more details.
https://www.tableau.com/sites/default/files/whitepapers/tsm_slideshare.pdf

Connection from google data studio to google cloud sql postgres with SSL

I've created one instance on Google Cloud with PostgreSql and I've connected the data studio with this database adding all the addresses specified in white list specified at link below
[https://support.google.com/datastudio/answer/7288010?hl=en]
With that solution I have to open access to my database to a lot of addresses. And this issue, associated to the fact that SSL is not supported is
a big lack of security.
Is there any different way to use google data studio for reports?
Maybe using CloudSqlProxy and considering google data studio as an external application from the GC environment?
Thanks for cooperation
Michele
I am assuming you are concerned about data being exposed due to the lack of support for SSL. Though that is a valid concern in a lot of cases, for your specific use case, it should not matter:
All the ip addresses that you have to whitelist here are Google Server/infrastructure addresses.
Data Studio as an application runs on Google's servers. So the communication between Google Cloud SQL and Google Data Studio will be entirely within Google's network. Even if it is not SSL, that traffic should not be exposed to outside world.
The connection between any client computer (where report is being viewed) and Data Studio will always be HTTPS.
However, if you still want to have an SSL connection, you can create a Community Connector in Apps Script that uses the JDBC service to connect to databases using SSL.
Try using client.key in both client fields.
The solution posted below helped here,
https://support.google.com/datastudio/thread/8739014?hl=en

want to connect local DB2 database with IBM bluemix App

Corporate AS400 server having Application and database DB2 running. currently there is no reporting tool for this application.
Planning to create new application on IBM bluemix with PHP. how can I connect secure DB2 database with IBM bluemix API.
As commented by mustaccio, you have tagged your question with secure-gateway - have you seen the Bluemix secure gateway documentation?
About Secure Gateway
Last updated: 6 December 2016
The Secure Gateway service provides you with a secure way to access
your on-premises or cloud data from your Bluemix® application through
a secure passage.
How Secure Gateway works
As displayed in the following diagram, the
service works by using a client to connect to your Bluemix
organization. Next, you add the service to your Bluemix organization.
Then, by using the Secure Gateway UI or REST API you can begin
creating your gateway by connecting to your client and creating a
destination point to your on-premises or cloud data. To increase
security, you can add application-side Transport Layer Security (TLS),
which encrypts the data that travels from your app to the client. You
can extend this security with client-side TLS, which encrypts the data
from the client to the on-premises or cloud data. When you complete
your gateway configuration, you can monitor the behavior of your
gateways and destinations in the Secure Gateway Dashboard.
Source: https://console.ng.bluemix.net/docs/services/SecureGateway/sg_overview.html#sg_overview
The Secure Gateway documentation describes all the steps you need to follow to connect a Bluemix application to an internal service.

using Windows Azure Connect local endpoint to send email from web role

I am trying to send email using one of our on-premises servers from one of my web roles hosted on azure. We've got a Windows Azure Connect endpoint installed on this on-premises server which has an SMTP server.
We've configured the web role so that it contains an activation code I acquired using the windows azure portal and the azure subscription we have. The web role has been deployed to azure with this configuration. Looking in the virtual network section of the portal I can see our on-premises server listed as well as the instance of said web role. I Created a group connecting the local endpoint to the web role instance.
The problem I'm having now is figuring out exactly what I have to do in order for the emails I send from the web role to be relayed through the smtp server on the on-premises server.
My first thought was to just specify the local endpoint name as it appears in our azure portal as the host to use when I create my SmtpClient object in code. Of course this didn't work as I received an SmtpException just saying Failure Sending Email.
So my question is once I've set everything up as described above, what do I need to do in ,my web role code and/or configuration in order to use the local endpoint as the smtp host for sending out my emails??
How about open your firewall for the SMTP on both your azure VM and local server.
As I know the azure VM firewall disabled the PING (ICMP) but doesn't know if it blocked all ports except those defined in your CSDEF file.