MobaXterm Network error: Connection refused while trying to duplicate a Tab - mobaxterm

I am using MobaXterm 20.6 to launch WSl2. When I right click on a tab and select duplicate tab, I get the error message
Network error: Connection refused
I do not get the message if I start the new tab by double clicking on any entry in the user sessions menu on the left side of the window.
I do not see this error with previous versions of MobaXterm.
Thanks for any hint.
G

The problem is fixed in version V21.0 Preview 3 Build 4592.
G

Related

opening PgAdmin 4 in Chrome

I want to open PgAdmin 4 in Chrome. I have right clicked the icon in the Windows System Tray and selected Configure... In the Browser Command input, I have added the following:
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --app=%URL%
The program keeps loading but won't come up. What should I do?
There is a strange behavior with the new version 4.28 that is addressed in the FAQ:
When I launch pgAdmin 4 v4.28 or later on Windows, the loading page
never closes. Why?
pgAdmin 4 v4.28 includes additional security features, one of which is
intended to prevent security issues caused by Content Sniffing.
Unfortunately some Windows systems are mis-configured such that this
causes Javascripts used by pgAdmin to fail to load. Opening the
developer tools on your browser will show an error similar to this:
Refused to execute script from
'http://127.0.0.1:57313/static/vendor/require/require.min.js?ver=42800'
because its MIME type ('text/plain') is not executable, and strict
MIME type checking is enabled.
(index):39 Uncaught ReferenceError: require is not defined at
(index):39
This will occur when the value of the registry key at
HKEY_CLASSES_ROOT\.js\Content Type is set to text/plain. To resolve
the issue, use the Registry Editor and reset the value of
HKEY_CLASSES_ROOT\.js\Content Type to:
text/javascript
Finally, restart the pgAdmin server.
Correct name of the key is HKEY_CLASSES_ROOT\.js\Content Type.
Restarting the PostgreSQL server after this modification accomplished by me via Services.
In addition I had to stop the pgAdmin process in task manager before I was able to successfully load a new pgAdmin tab in the browser.

pgAdmin 4 error in creating a new server. (could not connect to server: connection refused)

I have downloaded postgreSQL version 11.1 on my MacBook version 10.14.2, while installing I got an error says the following:
" Problem running post-install step. Installation may not complete correctly The database cluster initialization failed." and then clicked on next. (Mentioned this, just in case if it is related to my problem)
The problem I have now is, I can't view anything under servers, and whenever I try to create a new server it shows me this message.
screenshot of error message
I'm new to this and don't know what to do, any idea what should be done?

com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure & database disappeared & sql cmd line auto close

After running CCleaner and trying to debug a fix an Oauth password encryption type error, I have this error:
com.mysql.jdbc.exceptions.jdbc4.CommunicationsException:
Communications link failure
and all the local databases seemed to have disappeared
I tried to create a new database with MYSQL command line. After entering my password, there was a error and the window closed.
I have tried many solutions to debug the errors e.g. setting
compile('org.hibernate:hibernate-core')
compile('org.hibernate:hibernate-entitymanager')
to resolve an EntityFactory error which lead to this error I think.
I also tried killing the process on port 3306. But I couldn't think of any other options. Any suggestions for next steps would be...?
Apparently mysql service stopped working at some point without me realizing. The solution was going to Start -> type 'service.msc' -> run mysql80 (stands for mysql version 8.0 I think).

Error while starting HCK studio on server 2008 r2

When I try to open HCK studio, it shows an error:
Error: Failed to connect to database. Failed to connect to OM.
I tried the solution mentioned here:
http://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/0371abd0-9d9b-427d-95b1-8a57ee69b50a/error-failed-to-connect-to-database-failed-to-connect-to-om?forum=whck
It did not solve my problem.
Under HCK Manager ->Tools -> Management Console ->
"Datastore" is missing in my case. How to create new one (if possible)? and I don't know which user had installed HCK on server pc.
And any one can tell me the Server role required for driver testing on SQL Server manager? ...
Database name cannot be greater then 15 characters.
If your controller name is greater then 15 characters you must be facing the same problem as mine.

MySQL Workbench GUI connection failure

I'm using MySQL Workbench to interface with a remote database. When I configure the settings for the connection and click 'Test Connection', it displays a success dialog. Furthermore, if I right click the connection and select 'Start Command Line Client', everything is golden.
However, when I click the connection to use the GUI it displays a failure dialog 'Cannot Connect to Database Server'.
How might I resolve this issue?
Can you execute following commands using MySQL command line:
SHOW CREATE TABLE mysql.user;
SHOW VARIABLES LIKE '%char%';
If you cannot execute those without any error, that means you have a permission problem with your user.
May be your problem is the same problem mentioned here http://bugs.mysql.com/bug.php?id=50024