Open c7e715d1b04b17683718fb1e8944cc28 opened 7 months ago
Please provide the following information.
1, https://www.shin-server.jp/ 2, OpenSSH_8.0p1, OpenSSL 1.1.1k FIPS 25 Mar 2021 3, I cannot access the SSH configuration file because I do not have root privileges on the server.
Instead, I can give you the SSH connection password.
Similar problems encountered. In my case, it was due to the SSH settings on the rental server. Due to security enhancements on the rental server side, SSH had been changed to ‘only allow access from within the country’, so I changed it back to ‘allow access from outside the country’ and solved the problem.
Please provide the following information.
- Your hosting provider information, such as DigitalOcean, Linode, AWS, or GCP.
- The version information of your host's SSH service.
- The information from your host's SSH configuration file.
I am currently facing the same issue
Hosting Digitalocean
SSH version OpenSSH_9.6p1 Ubuntu-3ubuntu13.4, OpenSSL 3.0.13 30 Jan 2024
SSH configuration
Include /etc/ssh/ssh_config.d/*.conf
Host *
SendEnv LANG LC_*
HashKnownHosts yes
GSSAPIAuthentication yes
CASignatureAlgorithms +ssh-rsa
A bit of context, I am using `ed25519` generated on my local machine and I added the public key to the Digitalocean ubuntu serve `~/.ssh/authorized_keys`. I also added the private key to github secrets and below is my workflow
name: Staging Deployment
run-name: Code deployment to staging by ${{ github.actor }}
on: push: branches:
jobs: staging-deployment: name: Continuous deployment
runs-on: ubuntu-latest
steps:
- name: Checkout code from repository
uses: actions/checkout@v3
- name: Deploy code to server
uses: appleboy/ssh-action@v1.1.0
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
port: ${{ secrets.PORT }}
script: |
whoami
I'm having the same issue as @menadio, also on a DigitalOcean VM.
Scratch that, I had the username set incorrectly, appears to be working now.
I am using the master branch, but I cannot SSH because of an error.