Questions tagged [remote-access]

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

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

This can be achieved by using IPC, VPN or RAS.

3085 questions
0
votes
0 answers

What are the rules when it comes to interacting with a remote desktop?

I am accessing a remote desktop from my own personal laptop. I needed to copy a link from my personal laptop and paste it into the remote desktop I was accessing. Absent-mindedly, I did a normal copy and paste. Surprisingly, it worked. I started…
0
votes
0 answers

MariaDB 10.5 refusing remote connections

I've gone through a lot of tutorials and questions and I still can't get it to work. I installed MariaDB 10.5 on a Debian 11 server. We changed its IP address yesterday and since then we cannot do a remote connection. The database answers "Access…
Victor Leal
  • 1,055
  • 2
  • 12
  • 28
0
votes
1 answer

When I use ssh to start remote program, error can't find shared libraries

I want to write a script to start the remote program, like this ssh user@ip "/home/xx/remote_program"(I used ssh-copy-id first). I tested using ssh user@ip "date", and I can get the remote date time. And I can ssh user@ip, then ./remote_program, to…
Zeng Huang
  • 69
  • 6
0
votes
0 answers

SSLHandshakeException on hand shaking with android smart Tv

hi I'm working since 2 week on this problem but no luck. Its been a long time i trying every solution on stack over flow but didn't found any help Today I'm sharing my code and approach. I am creating a remote control device for android mobiles to…
0
votes
0 answers

Import Python module from remote server to local machine

There are lots of information but I am still confused. So sorry to have ask that again. I need to distribute my code to another user but I don’t want to show some intellectual property. In that case I put my sensitive information in the separate…
Arteml
  • 3
  • 3
0
votes
1 answer

Connexion to a remote PostgreSQL database works in command line but not through GUI

I need to connect to a remote postgreSQL database own by another person Through a GUI I get the error in the following screenshot I told them to check if they allows remote access to their database and indeed they do. What i don't understand is…
0
votes
0 answers

What is the best solution to run a script from cloud server inside main script using Python?

I have a script that I need to share with the company. As long as it is algotrading script I don't want to share major equations. I think that the best solution is to separate sensitive part into different script located on my cloud server and make…
Arteml
  • 3
  • 3
0
votes
1 answer

Windows Server 2008 Remote Access Scenerio

I run Windows Server 2008 R2 in my VMWare Fusion. Is there a way to -not locally- remote control the VM using MS' Remote Desktop Connection (or some equivalent tool)?
emregon
  • 388
  • 1
  • 7
  • 18
0
votes
1 answer

Can flutter move widgets using a controller?

I'm planning to make an app with features that the creator can move ?, like touchpad input or mouse/keyboard input, I have tried some kind of xdotool but it only works on linux and even then it uses native executable binary, so can flutter move the…
0
votes
0 answers

Mobaxterm ssh browser doesn't load and uploads get stuck at 0%

As said on the title, when connecting to my university's server using mobaxterm, the ssh browser doesn't show anything and when I put the mouse on it, it appears as loading(the mouse with the blue circle). Also when I try uploading a file, it gets…
0
votes
1 answer

Pasting an Excel File to my program which is running on an remote computer doesn't work

I have my Computer on which I have an Excel File. This File I want to copy and Paste to my program which is running on a Remote Computer. After that Copy I want to use this file and make Excel.Interop changes and after that I want to save a new…
0
votes
0 answers

Paramiko: Can't send command on its standard input

I am trying to execute the following code to execute a linux command from dataclasses import dataclass from typing import Type import paramiko class CmdError(Exception): ... @dataclass class CmdOutput: ext_code: int out: str class…
Antonio Costa
  • 101
  • 1
  • 6
0
votes
1 answer

Mounting of file systems remotely

I have a unix machine (unix1) and another remotely connected unix machine (unix2). using sshfs i am able to mount a unix2 file system on the unix1 machine (of course, I am the unix1 machine user and unix2 is the remote machine). But is it possible…
hari
  • 1,297
  • 5
  • 17
  • 36
0
votes
0 answers

Paramiko: Show the output from channel session

I am trying to get the output from a command using this code import time import paramiko host = "myserver.com" username = "user" password = "pass" ssh = paramiko.SSHClient() ssh =…
Antonio Costa
  • 101
  • 1
  • 6
0
votes
0 answers

When changing the time on a remote server with PS (after turning off auto time sync), it keeps switching back to current time

Summary: I have 4 systems running Windows Server 2022. One system has the PS code and the other 3 are targets to run this code on via PS "Invoke-Command". The objective is to turn off the automatic time sync option on the remote system, then setting…
1 2 3
99
100