Upload with scp command to a droplet has speed of less than 100KB/s (right now a file of 7MB took more than 5 minutes to upload to droplet with scp command) making it impossible to upload any pictures or files to droplet. Running speedtes-cli on droplet measures upload speed of 2183.39 Mbit/s or 272.92 MB/s. What is the problem? I have tried creating different droplets in different datacenters but speed was the same. And no, it is not my internet connection speed causing problems because I can upload these same files to different web pages instantly. This upload speed makes droplet unusable.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Enter your email to get $200 in credit for your first 60 days with DigitalOcean.
New accounts only. By submitting your email you agree to our Privacy Policy.
Hey @spoolioweb,
I’ve not found any reported network problems that could be causing this. As said, it might be good to contact DigitalOcean support for them to check however it does seem like the connection between your network and the droplet is not stable. This could be due to a lot of reasons not entirely connected to your Droplet. It’s possible the upload speed outside of your country to be low.
Hello @spoolioweb
The issue you’re experiencing with slow uploads may be due to several factors. It could be the network between your location and the data center, it could be an issue with
scp
itself, or it could be an issue with your droplet.Here are a few steps to help diagnose and possibly solve your issue:
First, make sure your droplet is not experiencing any CPU or Disk IO bottlenecks while uploading. You can monitor the droplet’s resource usage and check if the droplet is under load which can explain the slow upload speed.
Second, try using a different protocol for file transfer such as
sftp
orrsync
. In general, I’ll preferrsync
instead ofscp
since the protocol is more optimized and should complete the data transfer a lot faster.If neither of these options helps, please contact DigitalOcean’s support team directly and provide them with all the detail you’ve gathered. A support ticket will allow us to gather further information and potentially identify an issue.
Hope that this helps!