Questions tagged [remote-connection]

148 questions
0
votes
1 answer

How to get remoteHost name from EJB java application which is deployed in weblogic

Below is the example. We have an application which is deployed in Oracle Weblogic Server. And We have client who use our application by creating connection using weblogic context like below. env.put(Context.INITIAL_CONTEXT_FACTORY, …
0
votes
0 answers

Data is not visible on remote Oracle 18 XE connection

I have created Oracle Database on windows machine , with test table. CREATE TABLE TESTUSER ( NAME VARCHAR2(20) , LASTNAME VARCHAR2(20) ); and inserted data into this table insert into testuser(name, lastname) VALUES('Jon','Doe'); Then remote…
Re Viki
  • 1
  • 1
0
votes
3 answers

NodeJS to SQL Server Connection not working: socket hang up issue

Here is my complete code for sql connection, all code I have got from stackoverflow issues. Everywhere, I found the same code is being suggested, hence I also tried with the same. I have some other application which uses same connection with NextJs…
0
votes
1 answer

SQL Server 2008 remote connection only works once

When I connect to the SQL Server 2008 remotely it only works once, after that the server hangs. The service cannot be stopped or restarted and when trying to connect again it gives a 'Timeout' error. The server has TCP/IP connections enabled. The…
Ovi
  • 2,620
  • 7
  • 34
  • 51
0
votes
0 answers

How to Connect to Remote SQL Server Database Over Internet Using Public Static IP and Port Number?

I want to connect to my remote SQL Server over a different network, namely the internet. Even though my connection with Local IP is successful, I get connection error with Public IP (ex: 88.240.xxx.xxx). I followed the steps below. I enabled SQL…
Rba Egn
  • 1
  • 2
0
votes
0 answers

Database connection Error - Using NETLIFY

I have this project where I need to insert the content of a website to my local SQL Server. This website has a webhook feature where I can connect using a valid URL. I have to use this webhook to track the changes that are made on this site. So, I'm…
0
votes
0 answers

Paraview Visualization Remote connection errors

everyone! when I try the paraview 5.9.1 remote connection between cluster(server) and win10(client GUI). it shows client connected, but one second later it gives the error: Segmentation fault(core dumped). I donot know what is wrong with it? If…
qtan
  • 1
  • 1
0
votes
1 answer

Remotely control android device

I am trying to build Airdroid-like app. I'm aware it could be big challenge but that is best way to learn, right :) Idea is to create to two applications: one for android device and one for desktop device. Desktop application (when saying desktop,…
i542
  • 9
  • 1
0
votes
1 answer

How to Run some scripts into Virtual Machines(username and password) created in Hyper-V through scripts, without prompts

Problem statement: I want to run some scripts into a Virtual machine created in Hyper-V. The virtual machine has a Username and a password. The problem is Whenever I use invoke-command or enter-pssession, it prompts for username and password. I need…
0
votes
1 answer

Ubuntu refusing every connection, after massive permission meltdown in /etc

This morning, while trying to migrate some files from my test server to my live server; I made a horrible mistake. I was trying to pull my /etc/apache2 from the sandbox, and put it live, so I was temporarily changing the permissions in /etc/apache2…
Ryan Ward Valverde
  • 6,458
  • 6
  • 37
  • 48
0
votes
0 answers

Cakephp 4 can't connect to remote data source

maybe someone can help me out. Im using cakephp 4 and trying to connect to remote db on google cloud from a virtual host application on my local machine. Ubuntu 18.04.4 LTS apache2 php7.2 mysql Ver 14.14 Distrib 5.7.30 I get this error showing my…
0
votes
1 answer

SQL Server Management Studio: issues with remote connections

I need to use Microsoft SQL Server Management Studio (SSMS) to connect to a remote server for my work. I have never used SSMS before and I did not install it myself as I do not have admin rights on my work computer. I have been given a Server Name…
pollon285
  • 1
  • 2
0
votes
3 answers

Logging with a user in a remote MySQL database

How to log with a diferent user in a MYSQL remote database? Here's what I've done: Logged as root in the MYSQL: 'create user 'user'@'%' IDENTIFIED BY 'password'; 'grant select on *.* to 'user'@'%'; Then I setted a PHP script which connection is…
Lucas Famelli
  • 1,565
  • 2
  • 15
  • 23
0
votes
1 answer

SQL Server 2005 SQLAgent Triggers

I need to set up a SQL Server trigger to connect to a remote mysql linux server and insert data into a table. Is there a way to do this? I'm leaning towards triggers rather than scheduled tasks because the trigger will execute each time data is…
0
votes
1 answer

Elastic Search remote connection from Spring boot application

I am having sping boot application and if i use my local elastic search i am able to connect but if i used the remote elastic search i'am not able to connect. spring: data: elasticsearch: cluster-name: es_psc cluster-nodes:…