Questions tagged [remote-connection]

148 questions
0
votes
2 answers

How to execute an “insert into” query to a remote database with channel.connect();

This is the java code I have tried to insert into my remote database table. session.connect(); Channel channel = session.openChannel("exec"); String query = "INSERT INTO table_name (id,serialno,userid,checktime,checktype,eventType)…
shameem at
  • 13
  • 1
0
votes
1 answer

Communications link failure with jdbc and mysql in remote connection

I am trying to insert data from a java file into the mysql database which is installed in another system. This is my java file package serverDemo; import java.sql.Connection; import java.sql.DriverManager; import java.util.Scanner; import…
Shambhu
  • 121
  • 3
  • 11
0
votes
1 answer

Objective C write to Remote URL

Ok, so I have the correct username / pass for a remote host, and I have a NSURL Object referring to the file on the server. How can I possibly write data to that server via Objective-C? I cannot find anyone with this problem, so you help would be…
Richard J. Ross III
  • 55,009
  • 24
  • 135
  • 201
0
votes
0 answers

SQL Server connection failure (name pipes error 40)

I am having an issue at work that is driving me mad. I am new to SQL, and am finding my legs as a system administrator (trial by fire). We have a production server that runs a SQL database and I am trying to mimic the production server in a…
0
votes
2 answers

How to connect to MySQl db on linux server using toad?

How to connect to MySQl db on linux server using toad? what i should give on host? i get the error Can't connect to MySQL server on 'tinywall' (10061)
SmartMohi
  • 46
  • 1
  • 8
0
votes
1 answer

How to connect Oracle 11G database using SQL developer from another computer in a LAN connection

I am very new in database and learning Oracle 11G. So, I do not have deep knowledge on it. I have several computers in my lab connected via LAN. Oracle 11G is installed in computer-A(192.18.100.115). Now I want to use the database from other…
0
votes
1 answer

MAMP + Squid results in incorrect/invalid "doubled-up" address resolution

I can't figure it out for the life of me. I have a laptop (Macbook Pro) that I'm using as a web server to develop Wordpress websites. MAMP Pro 3.0.5 is running on it to serve the sites. As well, I'm also using Squidman 3.3.9 as proxy so I can…
0
votes
1 answer

python - number of pyro connections

I'm using python and writing something that connects to a remote object using Pyro4 When running some unit tests (using pyunit) that repeatedly connects to a remote object with pyro, I found I couldn't run more than 9 tests or the tests would get…
0
votes
2 answers

Can not remote connect to RDS DB instance of AWS

I have a problem with connect to DB instance of AWS after I config that: http://www.test.htmlcssworld.com/CDN/rds-dashboard.png I already add this DB instance to the Security Group with RULE: MySQL - TCP - port:3306 and source is…
Minh Dao
  • 3
  • 2
0
votes
1 answer

how to connect to mariadb when both mysql and mariadb exist in the remote server

I'm trying to connect to mariadb in the remote server, I've got both mysql and mariadb installed in the server. Now when I try to connect to mariadb using the following parameters, instead of mariadb I'm connected to mysql. Any suggestion on how to…
thickGlass
  • 540
  • 1
  • 5
  • 19
0
votes
2 answers

c# getting ip address of user who remotely connect to machine

I am using following piece of c# code in windows service to capture Remote connect and disconnect events. How I can get the IPaddress of end user who remotely connect to that machine. protected override void…
toughcanny
  • 59
  • 1
  • 10
0
votes
0 answers

slow mysql remote access (direct ethernet link between two servers)

i have two servers (one mysql db server, one client server) with direct ethernet link. The "remote" access used to be lighting fast (neglectable latency for query), no matter using IP addr or DNS. to fine tune the performance, i modified my.cnf…
leo
  • 317
  • 1
  • 9
0
votes
0 answers

Got this error 26 - error locating server/instance specified in client machine

My application works fine in my pc but not working in clients . I am tired of googling. Please anyone help me :( I made following changes in my computer- 1.Remote access is stared 2.Sqlbrowser is started and running 3.tcp 1433 and udp 1433 exception…
Sdp
  • 192
  • 3
  • 25
0
votes
1 answer

Enable Remote connections on SQL Server 2005 command line

A client I'm working with needs his SQL Server 2005 to accept remote connections, but I've only got a telnet shell to work with. I can't get any GUI on this remote computer, only a command shell. So, is it possible, in any way, to enable remote…
0
votes
1 answer

C# MySQL - remote connecting

I'm creating a C# (.NET 4.0) application which uses MySQL database to store data. This database is installed on a 3rd party company's server and the application has to connect remotely - currently by a domain name (myname.home.pl). In addition there…