Questions tagged [ssh]
The ssh tag has no summary.
13 questions
0 votes
0 answers
46 views
How to achieve a git pull from a CGNAT?
I imagine my scenario to be reasonably common, so I am wondering if there is a method to achieve it. I perform development on my local machine, which is either connected to the internet over my home ...
3 votes
1 answer
939 views
Plesk - SSH Terminal Extention - blank - broken connection
I installed the SSH Terminal extention so that my customers can have access to SSH without giving them remote SSH access. When I (under admin or the customer) open up the SSH terminal, the terminal is ...
1 vote
1 answer
1k views
Run NodeJS server through SSH without hanging from disconnect
I have a NodeJS server on a virtual machine. I connect to the machine through SSH and leave the server running with: npm start & If I disconnect with Ctl-D, the server keeps running. If my ...
1 vote
0 answers
352 views
Not supported authentication methods available (server sent: publickey)
I use Git to generate a key pair. The private key has this format with no extension (probably the .pem format): -----BEGIN OPENSSH PRIVATE KEY----- ... -----END OPENSSH PRIVATE KEY----- I want to ...
3 votes
0 answers
142 views
What commands does WHM/Cpanel run over SSH when you do an rsync backup?
I have an account at rsync.net and am trying to point WHM "rsync" backups to it. Obviously "rsync.net" has rsync installed, and they also have a small list of common UNIX commands in their ...
1 vote
1 answer
122 views
Delete files that end with a certain string via SSH
I have a plugin on WordPress that smushes all my images. The problem is, that for some reason, there's no option to remove the original images from the server after the smush. The plugin adds the ...
1 vote
0 answers
1k views
Not allowed to git push to cPanel account
I've seen similar questions on SE, but the solutions haven't worked for me, which I'll get to later. I have SSH access to my cPanel account and can log in via SSH fine. I made a new repo via cPanel, ...
1 vote
1 answer
471 views
Create FTP/SSH account with read-only access in DirectAdmin
I have a developer who wants to check website files on the server. In the past, this developer has made changes that broke the website. In order to avoid unwanted file editing, I need to grant the ...
1 vote
1 answer
3k views
Can you use a subdomain pointed to an IP for SSH
I have a website, and I'd like to use it for SSH-ing. I hate having to remember my computer's IP address, so I was hoping to do something like: ssh [email protected] -p 1234 or ssh uname@example....
3 votes
1 answer
2k views
Why are hacking attempts coming from IP addresses owned by Google?
I catch, save, and report all suspicious or malicious acts against my servers. Among the things I track are port scans on vulnerable ports (including the default ports for SSH, RDP, Plesk, and Webmin, ...
4 votes
2 answers
1k views
How to log in via ssh to a newly created virtual machine at Hetzner
I've purchased the cheapest virtual server (20GB, 2RAM, 1VCPU for 2.96€) at Hetzner and can not log in to it - a password is requested and I have no idea what password it should be. What I've tried ...
0 votes
1 answer
1k views
How can I check which of my server's ports are open using only CPanel?
I have been trying to get SSH access to my shared LAMP server for ages. I suspect that the ports are locked down or different to what they should be. Currently, the only access I have to the server is ...
1 vote
2 answers
904 views
How do I set up my SSH keys so I can copy files from my local PC to a remote shared server?
I want to start using SSH instead of FTP, but I am clueless when it comes to SSH keys. I'd like to use a Gulp command to transfer my files (as I do now with FTP). I've found a good amount of NPM ...