Skip to main content
Filter by
Sorted by
Tagged with
Tooling
0 votes
5 replies
26 views

Say you have an SSH server exposed to the outer web and a git server (or similar server that uses an SSH-based service) that is not publicly exposed but is locally addressable to the SSH server. Your ...
notgapriel's user avatar
0 votes
0 answers
30 views

I am experiencing a persistent hang when trying to connect to a specific remote server using VS Code (v1.108) and Cursor via Remote-SSH. The connection process indefinitely stalls at the "...
Dream's user avatar
  • 1
-4 votes
0 answers
48 views

it looks like the original name is ssh: #systemctl list-units --all | grep 'ssh\|sshd' | grep .service ssh.service loaded active running OpenBSD Secure Shell server [..] this is ...
achille's user avatar
  • 337
0 votes
0 answers
83 views

I am executing an SSH command on a remote host using PHP’s exec() function inside a foreach loop. Based on a condition, the command runs only during the 4th and 6th iterations. The same SSH command is ...
Balaji Sekar's user avatar
Advice
0 votes
1 replies
16 views

I was wondering if Github rules allow me to connect via a reverse SSH to their continuos integration virtual machines and obtain a shell prompt in order to for example debug a failing release ...
Scrooge McDuck's user avatar
0 votes
0 answers
106 views

Today I used the VS Code plugin Remote-ssh to connect to the server in Ubuntu 22.04. However, it failed after I prompted the password and clicked Enter. I have tried: changing the setting of Remote-...
mo gigigko's user avatar
0 votes
1 answer
113 views

I have a python script that runs as a service on raspi, the script executes a bash script which then connects to a windows pc via SSH using a key. I have successfully use the same code to connect to ...
zorodluffy's user avatar
1 vote
1 answer
72 views

I'm building a custom CLI daemon in Go for Ubuntu. When I run the CLI locally (without SSH), everything works correctly — for example: admin@admin> whoami responds as expected. However, after ...
Aditya Paluskar's user avatar
2 votes
1 answer
159 views

I noticed that git lfs operations (push or pull but especially push) with GitHub keep getting stuck running git-lfs-transfer. This is slowing down all of my git operations which call git lfs via hooks....
sciencectn's user avatar
  • 1,571
1 vote
0 answers
145 views

I am trying to automate SSH authentication on a jump server (bastion host) that requires both password and OTP. The script needs to: Connect to SSH with authentication Hand over control to the user ...
Hammad's user avatar
  • 21
2 votes
1 answer
103 views

I am consistently failing to connect to my CentOS server using the VS Code Remote - SSH extension. But I can connect and work successfully using a standard SSH client. The client PC and the server are ...
Kaine Ryder's user avatar
1 vote
1 answer
55 views

I have a paid account with PythonAnywhere, with MySQL DB. I am able to connect to DB using DBeaver and am also able to SSH using command prompt (ssh [email protected]). However when I ...
chhibbz's user avatar
  • 490
1 vote
2 answers
87 views

I'm working on an Azure DevOps pipeline Classic UI that deploys a software package to multiple Windows devices registered in Deployment Groups. The flow: Copying SSH Keys: We copy a private key file ...
alexis19apl's user avatar
0 votes
1 answer
253 views

I’m trying to connect ArgoCD to a private GitLab repository using SSH. I created a key pair and added the public key to GitLab. Then I configured the private key and repository URL ([email protected]....
parax's user avatar
  • 173
2 votes
1 answer
59 views

I run a custom SFTP Server using Paramiko that receives video files from NVR cameras and uploads it to a cloud storage. The flow is simple: The client (NVR) connects and authenticates, we write the ...
Raul Chiarella's user avatar
1 vote
1 answer
109 views

Goal Execute long running command remotely with the following capabilities: We can kill the task with its PID If task completes, its exit code should be written to file Task should be detached from ...
Kungfunk's user avatar
  • 115
3 votes
0 answers
77 views

I am using the LibGit2Sharp v0.31.0 release and trying to perform Git operations (like clone or fetch) over the SSH protocol. According to the release information, SSH is now supported through libgit2'...
BoomBoom's user avatar
0 votes
0 answers
71 views

Recently, I worked on an SSH terminal built with xTerm and dartssh2. In this project, I integrated a hidden TextField with several event listeners that directly send input to the terminal. Everything ...
Pankaj Joshi's user avatar
2 votes
1 answer
111 views

I am using git to host a LaTeX paper I'm writing on both my desktop and laptop. However, it has recently stopped working on the latter. One morning, I was able to clone and push over SSH just fine, ...
Experimental-Mathematics's user avatar
0 votes
0 answers
110 views

Socket For a backup service, I am trying to pass a SSH socket into a Podman container that is controlled by a Quadlet unit file. The socket is created by keychain in .bashrc: # .bashrc /usr/bin/...
usdn's user avatar
  • 514
1 vote
1 answer
53 views

I have a gitlab CI pipeline defined in .gitlab-ci.yml. One job is to deploy and start a spring boot application to 2 different machines. I do it by invoking a bash script twice with different machine ...
xing's user avatar
  • 504
1 vote
1 answer
85 views

I'm trying to connect through ssh to a hacking CTF server. I can do it with ssh so can I with python pwn tools but I struggle to do it with go. When I try to create a session, my code complains with ...
wavesinaroom's user avatar
0 votes
0 answers
135 views

I have some Java code that uses the Apache MINA SSH client to connect to a Windows server running OpenSSH. The objective is to get an interactive prompt (One that I can issue a command, get a response,...
Clive Galway's user avatar
0 votes
0 answers
30 views

I have Azure App deployed in Azure App Service. I can login to App Sevice server via SSH App or SSH Kudu: When I login via SSH (App) I can run script by ./script.sh which is: java -Dspring.profiles....
Michu93's user avatar
  • 5,877
0 votes
0 answers
38 views

Aside from SendEnv and AcceptEnv passing the WT_PROFILE_ID environment variable via SSH configuration, is there another way to some how query the terminal to determine if it is Windows terminal. ...
Archimedes Trajano's user avatar
0 votes
0 answers
67 views

I can SSH into my Azure VM from the Mac terminal without any issues, but when I try to use VS Code Remote-SSH, the connection fails as soon as I open a folder. Environment: Local machine: macOS VS ...
Lillian Yang's user avatar
0 votes
0 answers
48 views

I have a workspace for cross-compiling an application on a remote linux server. I recently moved to VS Code, and mapped VS Code to the workspace via ssh. In one of my files, I have the following: #...
HardcoreHenry's user avatar
1 vote
0 answers
119 views

I have 3 linux machines (hostA, hostB, hostC), from hostA I will remote login into hostB via ssh and transfer some file/directory from hostA to hostB. Once transfer is done from hostA to hostB, I ...
Harry's user avatar
  • 4,334
2 votes
2 answers
170 views

I'm trying to clone a project from gitlab in a docker but having authentication failure issue. Outside of docker, it works well to checkout the project using git clone command. $ git clone "git ...
Cprogrammer's user avatar
0 votes
1 answer
66 views

I am trying to ssh into Arista EOS Switch by using golang package: golang.org/x/crypto/ssh, the idea is to ssh into switch, execute some commands and get output. here is my code: func ExecuteCommands(...
JayantSeth's user avatar
2 votes
1 answer
132 views

Question I'm trying to understand the following symptoms: I have a C++ program that uses Windows ReadFile to read (and discard) all of stdin. The ReadFile call specifies a read size of 0x10000 (...
Scott McPeak's user avatar
  • 13.9k
2 votes
1 answer
456 views

I'm trying to set up automatic CI/CD deployment of my frontend via GitHub Actions using SSH to connect to a Hetzner cloud VM (Shared vCPU). Everything works except for one issue related to the ...
coder's user avatar
  • 715
0 votes
0 answers
43 views

I have a scenario where I have AWS EKS hosted in one region in AWS (us-east-2). I have a pod that communicates out to raspberry pis outside via a VPN. The VPN is an OpenVPN server hosted on an EC2 ...
Dylan's user avatar
  • 673
0 votes
1 answer
87 views

I have access to a custom git server as user. I can't modify SSH accepted keys of the server. The clones are done like this: git clone USERNAME@HOSTNAME:REPO_NAME But they ask for a password prompt ...
Aleix Mariné's user avatar
0 votes
0 answers
207 views

First time using Microsoft Remote-SSH extension in VS-Code on a Ubuntu 24.04 machine to ssh login a remote Ubuntu 24.04 Server. After a login, the remote ssh connection then died within a minute. AI-...
Sun Bear's user avatar
  • 8,599
0 votes
0 answers
70 views

ruby 2.6.6 ubuntu 24.04 wp-cli 2.11 Attempting to post a blog entry using the wp-cli facility via ssh called from ruby. Example call: system("ssh -p 3875 [email protected] \"cd public_html; ...
willyab's user avatar
  • 342
1 vote
1 answer
45 views

I want to create a workflow that can be manually triggered. It has multiple ssh private keys stored as secrets, and the user could choose any of them by passing their name into one of the workflow's ...
taughtmarci's user avatar
1 vote
1 answer
352 views

I would like to build an image directly from a private gitlab repository without cloning the this repository first. I found out that this is possible with: podman build -t mytag https://gitlab.example....
Dalada's user avatar
  • 43
0 votes
1 answer
86 views

I have two machines: A host machine (Windows 11) running VS Code A Hyper-V guest VM (Windows 11): OpenSSH Server installed, running VS Code Server with a Python project pythonWebApp I'd like to ssh ...
chansey's user avatar
  • 1,429
-1 votes
1 answer
58 views

When I click on Connect to Remote Server in VScode, it throws this error: wget download failed vscode-cli-<commit>.tar.gz: Disk quota exceeded scp: dest open "...": Failure
Ananya Ananth's user avatar
0 votes
0 answers
163 views

My company manages my Windows machine where VS Code is installed and they periodically update the version every few months. I develop against a remote Linux machine using the remote ssh extension, and ...
Dan L's user avatar
  • 4,469
0 votes
0 answers
67 views

I have a personal web server that I use for file shares, which has been working fine for years. It's running a current Gentoo build. I started getting problems, but can't for the life of me figure out ...
Dieter's user avatar
  • 1
0 votes
1 answer
89 views

I am migrating on a new Ubuntu Digital ocean droplet. I had one bought a few years ago, but since it is old it is using Ubuntu 18.04. Due to compatibility issues I decided to buy a new droplet which ...
Angel Miladinov's user avatar
0 votes
1 answer
71 views

I'm trying to connect to a remote Vertica DB using Java and connecting to it involves an SSH tunnel with the addition of a PEM file as a Public Key. However, after creating a port forwarding session ...
Will Preston's user avatar
0 votes
1 answer
111 views

My scenario is like this A(ansible host) B(jumphost, ssh key/yubikey needed) C(target host, password only) What I am trying tto do is from A executing playbook through B(requires yubikey also) into C. ...
Cheng Lu's user avatar
3 votes
3 answers
1k views

I'm getting a weird bug when I try to use Vscode to SSH into a server. I'm using VSCode version 1.101.0. At the end of the post is the entire log that I'm getting when I attempt to SSH into the server,...
Sutton's user avatar
  • 117
2 votes
1 answer
97 views

I am currently trying to open a persistent SSH connection to my FTP server, but I do not know how to save the SSHClient, that I can savely wait for the connection to be established. Here ist my code ...
Fr0ntIiner's user avatar
3 votes
1 answer
127 views

I've got some code that runs through a list of devices, connects to them via SSH and queries some parameters. The basic code looks like this: ssh = paramiko.SSHClient() ssh.connect(ip_address, ...
parsley72's user avatar
  • 9,337
0 votes
0 answers
74 views

I am getting an error when trying to establish connection to a remote server using jcraft. com.jcraft.jsch.JSchException: Auth fail at com.jcraft.jsch.Session.connect(Session.java:519) ...
JavaGeek's user avatar
  • 315
0 votes
0 answers
45 views

I'm running the following command to upload packages to Sourceforge: lftp -u "$SF_SFTP_USER","$SF_SFTP_PASS" sftp://frs.sourceforge.net <<EOF set sftp:auto-confirm ...
Alberson Miranda's user avatar

1
2 3 4 5
601