Questions tagged [remote-access]

Remote access is the connection to a data processing system from a remote location.

Filter by
Sorted by
Tagged with
336 votes
26 answers
378k views

How to solve "sign_and_send_pubkey: signing failed: agent refused operation"?

Configuring a new Digital Ocean droplet with SSH keys. When I run ssh-copy-id this is what I get: ssh-copy-id [email protected] /usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), ...
user968270's user avatar
  • 4,721
211 votes
13 answers
230k views

How can I run Tensorboard on a remote server?

I'm new to Tensorflow and would greatly benefit from some visualizations of what I'm doing. I understand that Tensorboard is a useful visualization tool, but how do I run it on my remote Ubuntu ...
user's user avatar
  • 2,425
197 votes
5 answers
506k views

Mysql adding user for remote access

I created user user@'%' with password 'password. But I can not connect with: mysql_connect('localhost:3306', 'user', 'password'); When I created user user@'localhost', I was able to connect. Why? ...
user2333586's user avatar
  • 1,983
113 votes
13 answers
329k views

How can I flush GPU memory using CUDA (physical reset is unavailable)

My CUDA program crashed during execution, before memory was flushed. As a result, device memory remained occupied. I'm running on a GTX 580, for which nvidia-smi --gpu-reset is not supported. ...
timdim's user avatar
  • 1,161
92 votes
19 answers
487k views

Can't connect to Postgresql on port 5432

I have PostgreSQL 9.3 installed on a server running Ubuntu Server 14.04. If I ssh into the server via terminal, I'm able to connect with psql. But when I try to configure pgAdmin III to do the remote ...
Rodrigo's user avatar
  • 4,886
84 votes
15 answers
105k views

How to get remote access to a private docker-registry?

I'm trying to setup a private docker registry using the image taken from: https://github.com/docker/docker-registry Just by running: docker run -p 5000:5000 registry I can pull/push from/to this ...
Ofer Eliassaf's user avatar
74 votes
31 answers
228k views

VS Code Remote SSH Connection not working

Im trying to setup vscode with the remote developement extensions on a second pc. While it works on my main one it doesnt on the second one. Tried reinstalling vscode, extensions and using older ...
000's user avatar
  • 851
65 votes
1 answer
119k views

Using a remote host's USB port as local USB (Linux and Windows) [closed]

I have a USB device that reads data from a system and transfers them to the computer. I am wondering if it's possible to have a Linux single board PC (i.e. Raspberry Pi) to run a script and be a ...
Caspian's user avatar
  • 751
58 votes
21 answers
116k views

How to set mongod.conf bind_ip with multiple ip address

I am a newbie for setting up the server environment and mongoDB. This may sounds something really simple, however, I really need your help on it. I am trying to connect to my virtual machine which ...
yeelan's user avatar
  • 1,405
57 votes
4 answers
28k views

Using Emacs server and emacsclient on other machines as other users

I know that after I call (start-server) inside an existing Emacs session I can then use emacsclient -c (on the same computer) to create new frames that connect into that server, so that each new frame ...
Paul Whittaker's user avatar
55 votes
3 answers
158k views

Use SQL Server Management Studio to connect remotely to an SQL Server Express instance hosted on an Azure Virtual Machine

Initial Attempt I have an Azure VM with Windows Server 2012, on which I just installed SQL Server 2012 Express Database Engine component. Then, I followed the instructions here to connect remotely ...
45 votes
7 answers
82k views

Connect to MySQL on AWS from local machine

I am trying to set up a dev environment on my local machine that accesses a MySQL DB on AWS, but I keep getting a "Can't connect" message. mysql_connect('xxx.xxx.xxx.xxx:3306', 'USERNAME', 'PASSWORD')...
Jeffrey Hunter's user avatar
42 votes
8 answers
129k views

How to run a jupyter notebook through a remote server on local machine?

I have a remote access to remote server from my university and I'm accessing it through my local machine! However, my local machine has not enough memory to run multiple jupyter notebooks. Is there ...
Mahesh's user avatar
  • 756
38 votes
7 answers
84k views

"Remote machine is AAD" but "The logon attempt failed"

I setup Remote Desktop Connection and the computer says: AzureAD\username already has access: Very good, let's try to connect using AzureAD\username: Unfortunately it says: Your credential did not ...
Francesco Mantovani's user avatar
38 votes
13 answers
249k views

Unable to connect to SQL Server instance remotely

I’m trying to access the SQL Server instance on my VPS from SQL Server Management Studio on my local machine. It’s not working (the error I’m getting is: A network-related or instance-specific ...
Leah's user avatar
  • 2,567
38 votes
5 answers
74k views

How to list all files in a remote SVN repository?

I access a large remote SVN repository. Since I usually only need a tiny subset of its content I did a "sparse checkout": svn checkout --depth empty svn+ssh://... src Whenever I need a folder from ...
Koma's user avatar
  • 383
38 votes
11 answers
171k views

ERROR 2003 (HY000): Can't connect to MySQL server (111)

This question is related to the following questions: Can't connect to MySQL server error 111 Trying to connect to remote MySQL host (error 2003) I am configuring a new MySQL (5.1) server on my ...
Nick Ruiz's user avatar
  • 1,425
37 votes
3 answers
132k views

Where can I get a virtual machine online? [closed]

I am looking for some VPS/ Virtual machine which should be available all the time and I must be able to access it from any computer having internet. I know a few paid services but just wondering If I ...
conetfun's user avatar
  • 1,605
36 votes
4 answers
131k views

Get current user's credentials object in Powershell without prompting

I have a Powershell script that is going to be run through an automation tool against multiple servers. It works fine on Windows machines, as the remote calls use the tool's service account without ...
Beege's user avatar
  • 375
35 votes
6 answers
79k views

Run MySQL query on remote machine through ssh in command line

I am trying to run MySQL query on remote machine with this command: ssh [email protected] "mysql -uroot -proot -e \"use test";"" I am not able to use that database. Please suggest a working command....
lk121's user avatar
  • 1,305
32 votes
4 answers
27k views

How to remotely update Python applications

What is the best method to push changes to a program written in Python? I have a piece of software that is written in Python that will regularly be updated. What would be the best way to do this? All ...
orionz's user avatar
  • 321
32 votes
4 answers
56k views

Current state and solutions for OpenGL over Windows Remote [closed]

OpenGL and Windows Remote don't play along nicely. Solutions for this are dependent on the use case and answers are fragmented across the vast depths of the net. This is a write-up I wish existed when ...
FrostKiwi's user avatar
  • 761
31 votes
3 answers
35k views

Write SSH command over multiple lines

I'm trying to remote login to a shell and execute a bunch of commands on the shell. But to make it more readable, I'd like to place my code over multiple lines. How should I be doing this? ssh -o <...
dspshyama's user avatar
  • 433
28 votes
6 answers
93k views

MobaXterm drag-and-drop panel missing

I need to run a program from my windows xP machine thats installed on a remote UNIX machine using MobaXterm but I have very little experience with this sort of thing. I can login into the machine ...
fizzics's user avatar
  • 383
28 votes
5 answers
115k views

pip install gives me this error "can't open file 'pip': [Errno 2] No such file or directory"

I have tried using pip -m install win32api, but I still get the error "can't open file 'pip': [Errno 2] No such file or directory" Can anyone help me on this? Note: I have renamed the python.exe ...
Bipin Shetty's user avatar
27 votes
6 answers
25k views

Persistent use of Jupyter Notebook from remote server

I connect to a remote server using ssh -L but if I close the laptop lid or the connection is lost, the jupyter notebook is disconnected. After I reconnect to the remote server, the "last" session is ...
Michael D's user avatar
  • 1,759
26 votes
4 answers
39k views

Apache Cassandra remote access

I have installed Apache Cassandra on the remote Ubuntu server. How to allow remote access for an Apache Cassandra database? And how to make a connection?
user1588782's user avatar
26 votes
9 answers
47k views

Accessing ASP.NET Development Server from another pc on the network

I would like to test my web app in other browsers. I have installed Virtual PC to do just that. the ASP.NET development server does not allow remote connections so the virtual pc (another computer on ...
Paul Knopf's user avatar
  • 9,644
25 votes
1 answer
91k views

Windows 7 remote shutdown: Access denied(5) [closed]

I am trying to force a remote shutdown from my laptop to my PC: machine> shutdown -m \\192.168.2.10 -s -f -t 0 192.168.2.10: Access denied(5) I am in a WLAN/LAN environment: Laptop is in WLAN ...
dialogik's user avatar
  • 9,524
24 votes
5 answers
20k views

Read remote file beginning with "smb://" using R

To read a file in R, I'd normally do something like the following: read.csv('/Users/myusername/myfilename.csv') But, I'm trying to read a file located on a remote server (Windows SMB/CIFS share) ...
Joshua Rosenberg's user avatar
23 votes
4 answers
113k views

Where does rsync keep the log file for complete and incomplete data transfers?

I want to get the IPs of all the destination devices where my data transfer using rsync could not be complete (or even start) as those devices are not connected to Internet or got disconnected while ...
user1709815's user avatar
23 votes
1 answer
74k views

RabbitMQ client can't connect to remote RabbitMQ server [closed]

I have a nodejs client that uses bramqp for connecting to RabbitMQ server. My client can connect to a Rabbit MQ server in localhost and works well. But it's unable to connect to a remote RabbitMQ ...
Ikarus's user avatar
  • 1,169
22 votes
3 answers
104k views

xcopy with credentials on remote machine [closed]

I am trying to access a remote server on a different domain through its IP address. In run command I entered the following \\XXX.XXX.XXX.XXX\C$\Program Files\ I get a pop up window asking for ...
Sandy's user avatar
  • 11.5k
22 votes
2 answers
46k views

Check status of services that run in a remote computer using C#

I'm using the following code. ServiceController MyController = new ServiceController(); MyController.MachineName = server_txt.Text.Trim(); MyController.ServiceName = "Service1"; string msg = ...
user avatar
21 votes
4 answers
46k views

How to remotely control a Windows Service with ServiceController?

I'm trying to control Windows Services that are installed in a remote computer. I'm using the ServiceController class. I have this: ServiceController svc = new ServiceController("MyWindowsService", ...
Amokrane Chentir's user avatar
21 votes
2 answers
45k views

How to setup a guacamole on a windows machine?

From official website of gaucamole i.e. (http://guacamole.incubator.apache.org)- Apache Guacamole is a clientless remote desktop gateway. It supports standard protocols like VNC, RDP, and SSH. ...
Alex's user avatar
  • 335
21 votes
5 answers
19k views

ADB tcpip command without cable

I need remote ADB shell.. I know that we have to issue "ADB tcpip ".. to change ADB server to TCP listening mode. But, the problem is that my phone is not rooted, and I do not have USB cable. I can't ...
Jason Hwang's user avatar
20 votes
2 answers
41k views

Wait until task is completed on Remote Machine through Python [duplicate]

I am writing a program in python on Ubuntu. In that program I am trying to print a message after completing a task "Delete a File" on Remote machine (RaspberryPi), connected to network. But In actual ...
Irfan Ghaffar7's user avatar
20 votes
4 answers
47k views

Mongo: network error while attempting to run command 'whatsmyuri' on host

I have been trying to access my mongo instance from another machine, but I get this error. I could not find many references to this whatsmyuri error. This is what I get from the external machine: $ ...
makeMonday's user avatar
  • 2,363
20 votes
1 answer
4k views

Controlling iOS device via mouse/keyboard [closed]

Some companies are offering manual testing of real iPhone/iPad devices. With your mouse and keyboard, you can control the device straight from your browser. They probably use something like AirPlay ...
Jochen's user avatar
  • 1,863
19 votes
7 answers
53k views

How to connect to docker mysql container on remote machine

I have two machines. My machine with IP1(Europe), and other machine with public IP2(USA). On IP2 I have mysql container running with volume /var/lib/mysql set to be replicated in some folder on the ...
makkasi's user avatar
  • 6,828
18 votes
3 answers
34k views

Interact with Jupyter Notebooks via API

The problem: I want to interact with Jupyter from another application via Jupyter API, in particular I want to run my notebooks from the app at least (Perfect variant for me is to edit some paragraphs ...
Alexander Yakovlev's user avatar
17 votes
6 answers
10k views

Clojure - how to connect to running REPL process remotely

How can I connect to a REPL session running on a remote server that I can access, for example via SSH?
alex314159's user avatar
  • 3,199
17 votes
3 answers
11k views

Jenkins—get "Build Time Trend" values using "Remote Access API"

Is there a way that we can get all Jenkins-"Build Time Trend" information ( Build number + Status[success/failed etc] + Duration ) for an application; using the Jenkins remote access API? Or else I ...
Chathura Kulasinghe's user avatar
17 votes
8 answers
30k views

Eclipse Tomcat7 Server Doesnt support Remote Host

My Problem is: When I try to add my Tomcat7 to Eclipse EE as a server, I get an error message that says: "The currently selected server type does not support remote hosts" Does anyone know how to ...
jhbruhn's user avatar
  • 878
17 votes
2 answers
53k views

Oracle VirtualBox "VT-x is disabled in the BIOS"

I'm getting this error while loading an image from a Oracle virtual box. How can I fix it? I installed virtual box 4.3.12 via a remote desktop connection to a Windows 7 64-bit, 32G RAM computer. I ...
Yu Deng's user avatar
  • 1,061
17 votes
3 answers
64k views

Getting all open PS Sessions on a remote server (from new console window)

I can start 5 new PS sessions on a remote server and see them all by running Get-PSSession PS C:\> New-PSSession -ComputerName MyServerName Id Name ComputerName State ...
Local Needs's user avatar
16 votes
15 answers
19k views

Developing via Remote Desktop [closed]

Has anybody any successful remarks about having a team working via Remote Desktop? In many workplaces, we put end users via Citrix and the applications on a central, powerful server. Sometimes the ...
Jason's user avatar
  • 16.9k
16 votes
2 answers
18k views

deploy/debug java code on a remote server using Intellij

I want to run my java code on a remote server for faster speed (The server is very powerful). What I want is to connect my Intellij to that remote server and run my code. But I want to still use the ...
HimanAB's user avatar
  • 2,493
16 votes
3 answers
31k views

How to easily execute R commands on remote server?

I use Excel + R on Windows on a rather slow desktop. I have a full admin access to very fast Ubuntu-based server. I am wondering: how to remotely execute commands on the server? What I can do is to ...
Adam Ryczkowski's user avatar

1
2 3 4 5
63