Questions tagged [remote-connection]

148 questions
1
vote
0 answers

How can i download a file from another remote computer

I'm trying to download a file from target computer remotely while having reverse connection. I am using Linux as my server machine and my target machine (client) is Windows 10. My code is written in python3.9. Before modifying my code I was able to…
wonderboy
  • 11
  • 3
1
vote
2 answers

SQL Server Express - Remote Connection continues to fail

I have been unable to configure my SQL Server 2008 Express to allow remote connections. I followed the instructions from this guide: http://www.linglom.com/2009/03/28/enable-remote-connection-on-sql-server-2008-express/ . I am still getting the…
1
vote
2 answers

Unable to create connectionstring for a remote desktop for a C# application

I want to create a Windows service which will copy data from one database to another database. The source database is in a remote location, below is the function using SqlConnectionStringBuilder and creating the connection string: public string…
1
vote
1 answer

Cannot access vagrant MySQL database from outside (only when vagrant ssh'd into the box w/Scotchbox)

I am running Vagrant & Virtual Box - I have a PHP/MySQL setup within my Vagrantfile when I vagrant ssh via the terminal I can access my database directly without any issue using the default root user (password is 'root') My Vagrant IP is…
Zabs
  • 13,852
  • 45
  • 173
  • 297
1
vote
2 answers

How to create a connection from .NET Service to Remote PostgreSQL server

I am not able to connect to the remote PostgreSQL server from C# .NET Code using some connection string. (My connection string contain basic information like host address, port, username, password, database name). I am able to connect to the…
1
vote
0 answers

WPF application :System.TimeChanged event fires when you take a remote connection? Why?And how to avoid it?

I have a WPF applciation running on say PC-1, when time zone is changed in PC-1, the application display a notification saying time zone changed and restarts the application. The problem is when PC-2 takes remote Connection of PC-1, the…
1
vote
2 answers

Connecting to a SQL Server using Entity Framework 4

So on my development machine I have SQL Server Express and Visual Studio installed. I finished creating the application and everythings working. Here is the connection string in the App.config file:
delete
1
vote
1 answer

Remote connection to postgreSQL server in google cloud VM instance

I can't get remote access to my PostgreSQL server in Ubuntu16.04 VM instance in google cloud from my laptop. I've added my laptop IP to pg_hba.conf in Google Cloud and tried both "md5" and "Trust" methods: #IPv4 local connections: host all …
1
vote
0 answers

How to read the result of actively running script using Paramiko python?

My Script from __future__ import print_function import…
Victor
  • 29
  • 2
1
vote
1 answer

Mongodb not listing collections when connecting remotely from CentOS

Mongo server: Windows 10 (host) client: CentOS 6.2, a virtual box vm on windows 10 host. This is actually a cloudera quick start vm. Issue: mongodb connects to the remote server (from CentOS to Windows) via terminal, lists the databases fine, but…
Vamsi
  • 52
  • 10
1
vote
0 answers

How to share remote connection settings across computers? (Netbeans)

A friend and I are trying to work together by using dropbox as the synchronization medium right now. We want to have our project be so that when we hit save, our changes are shown on the other's computer, and the changes are also uploaded to a…
Pangamma
  • 731
  • 12
  • 28
1
vote
1 answer

Can not connect to AWS RDS mysql from SQLWORKBENCH

I am new to AWS. I followed AWS quick start documentation and created my Web server and Database server. I can connect my Web server from my browser and ssh client. But i couldn't connect my MYSQl database from SQL workbench or MySQL yog. I tried…
1
vote
1 answer

Enable remote connections for SQL Server 2014 Express

I have a SQL Server 2014 Express installed and I want to allow remote connections. I have read this answer, but I can't find the configuration manager installed on the system. So my question: where can this configuration be done?
etalon11
  • 895
  • 2
  • 13
  • 36
1
vote
0 answers

setting-up oracle-xe

I installed oracle-xe into my virtual box that running with Fedora 13 successfully. Although I can ping my virtual machine, I can not connect the database from outside the box. Do I have to make some changes on tnsnames.ora or can I use another…
haluk
  • 1,148
  • 2
  • 9
  • 19
1
vote
2 answers

unable to understand connection establishment code

I am beginner in Java and as such I am having difficulty in understanding a piece of code.At this SO post the first two lines create a connection instance: /* Create a connection instance */ Connection conn = new Connection(hostname); /* Now connect…
Jason Donnald
  • 2,256
  • 9
  • 36
  • 49