Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Shells Virtual Desktop
BMail.ag - Secure Email Service
Server.net
CPLicense.net
VPS Server
Buy VPN
Vultr
VMs for AI
HostDare
ReliableSite White-Label Dedicated Hosting for Resellers
InterServer VPS
BMail.ag - Secure Email Service
Best VPN
High-Performance Bare Metal Server Solutions
Karvl.com
Server Mania Cloud Hosting
DataWagon Hosting
AlphaVPS Hosting
Evoxt.com
Clouvider
VPS Hosting with NVMe
Residential IPs in the US & 4G Mobile Proxies in EU & US with Unlimited Bandwidth
ReliableSite White-Label Dedicated Hosting for Resellers
Rabisu - Hosting Solutions
Shells Virtual Desktop
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

servaRICA Black Friday 2022 - Storage - Dedicated - NVMe - Hybrid - SSD - 20x GIVEAWAY

1911131415

Comments

  • servarica_haniservarica_hani Member, Patron Provider

    @quanhua92 said:
    @servarica_hani Can I use docker with Disabled VM-x/AMD-V?

    yes on vps you can run docker , many users do it

    on dedicated servers you can do whatever you want as well

    Thanked by 1quanhua92
  • Can I ask people who bought storage plans, what are you using to run backups and how well is it doing on these servers?

  • Order #2779552709

  • @quanhua92 said:
    @servarica_hani Can I use docker with Disabled VM-x/AMD-V?

    Docker is containerization, not virtualization. As long as the VPS is using KVM or Xen, it doesn't require the host to do any special configuration. The same goes for LXC/LXD if you ever want to use it.

    Thanked by 2quanhua92 ariq01
  • Order #6940749127

  • @hkbbdx said:
    my order number is: 6985825560, Thank you.

    @Daniel15 said:

    @quanhua92 said:
    @servarica_hani Can I use docker with Disabled VM-x/AMD-V?

    Docker is containerization, not virtualization. As long as the VPS is using KVM or Xen, it doesn't require the host to do any special configuration. The same goes for LXC/LXD if you ever want to use it.

    Where's the best place for me to learn about using docker? There's so many projects on GitHub that I want to install

  • @melp57 said: Where's the best place for me to learn about using docker?

    Start by installing it and making sure the hello-world image runs: https://docs.docker.com/engine/install/debian/

    then you can just search Google for "Docker tutorial" :) I think linuxserver.io have a decent overview in their docs.

    For production usage, you should learn about "Docker Compose", which lets you provide a list of Docker containers in a docker-compose.yml file, and easily start/stop/upgrade them.

    If you want it to be a bit easier, you can use a UI like Portainer to manage your Docker images.

    Thanked by 1melp57
  • @Daniel15 said:

    @melp57 said: Where's the best place for me to learn about using docker?

    Start by installing it and making sure the hello-world image runs: https://docs.docker.com/engine/install/debian/

    then you can just search Google for "Docker tutorial" :) I think linuxserver.io have a decent overview in their docs.

    For production usage, you should learn about "Docker Compose", which lets you provide a list of Docker containers in a docker-compose.yml file, and easily start/stop/upgrade them.

    If you want it to be a bit easier, you can use a UI like Portainer to manage your Docker images.

    Good advice. I found it useful to start with the official documentation and some videos on LinkedIn Learning to get an overview of Docker and then jump into working with it in a test environment.

    Thanked by 1melp57
  • Giveawayy

  • lewellynlewellyn Member
    edited December 2022

    @Daniel15 said:

    @melp57 said: Where's the best place for me to learn about using docker?

    Start by installing it and making sure the hello-world image runs: https://docs.docker.com/engine/install/debian/

    then you can just search Google for "Docker tutorial" :) I think linuxserver.io have a decent overview in their docs.

    For production usage, you should learn about "Docker Compose", which lets you provide a list of Docker containers in a docker-compose.yml file, and easily start/stop/upgrade them.

    If you want it to be a bit easier, you can use a UI like Portainer to manage your Docker images.

    Let me just say, as someone who runs containers in a truly production-critical setting (i.e. our container goes down, so do assembly lines and safety systems), docker-compose is a pain in the ass for repeatable and reliable deployments which must work with 100% certainty with zero deviation. It looks like that's what it's for, but there are so many edge cases that make it unsuitable. :(

    Also, from a security perspective, you probably should be trying to run rootless podman containers instead of docker. One huge benefit is that podman is trivial to run from systemd services. Docker is inherently unsuitable for managing containers from a systemd unit. (Dependencies, permissions, etc.) And a rootless container helps ensure good system hygiene even within your containers. You don't leave your web server running as root, so why the rest of the things you're running?

    Podman Getting Started: https://podman.io/getting-started/

    Another huge benefit to going with Podman is that it leaves you closer to your containers "just working" in any Kubernetes environment when you get there. A number of Kubernetes distributions (especially those related to Red Hat/OpenShift) highly encourage not running your containers as root, to avoid accidental cross-container communication or escalation on the host.

    Also, for the most part, it's as easy as alias docker=podman in your shell profile to switch from Docker to Podman! :)

  • @lewellyn said:

    @Daniel15 said:

    @melp57 said: Where's the best place for me to learn about using docker?

    Start by installing it and making sure the hello-world image runs: https://docs.docker.com/engine/install/debian/

    then you can just search Google for "Docker tutorial" :) I think linuxserver.io have a decent overview in their docs.

    For production usage, you should learn about "Docker Compose", which lets you provide a list of Docker containers in a docker-compose.yml file, and easily start/stop/upgrade them.

    If you want it to be a bit easier, you can use a UI like Portainer to manage your Docker images.

    Let me just say, as someone who runs containers in a truly production-critical setting (i.e. our container goes down, so do assembly lines and safety systems), docker-compose is a pain in the ass for repeatable and reliable deployments which must work with 100% certainty with zero deviation. It looks like that's what it's for, but there are so many edge cases that make it unsuitable. :(

    Also, from a security perspective, you probably should be trying to run rootless podman containers instead of docker. One huge benefit is that podman is trivial to run from systemd services. Docker is inherently unsuitable for managing containers from a systemd unit. (Dependencies, permissions, etc.) And a rootless container helps ensure good system hygiene even within your containers. You don't leave your web server running as root, so why the rest of the things you're running?

    Podman Getting Started: https://podman.io/getting-started/

    Another huge benefit to going with Podman is that it leaves you closer to your containers "just working" in any Kubernetes environment when you get there. A number of Kubernetes distributions (especially those related to Red Hat/OpenShift) highly encourage not running your containers as root, to avoid accidental cross-container communication or escalation on the host.

    Also, for the most part, it's as easy as alias docker=podman in your shell profile to switch from Docker to Podman! :)

    Interesting, I will have to take a closer look at that.

  • YABS of "Polar Bear Storage":

    # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
    #              Yet-Another-Bench-Script              #
    #                     v2022-12-04                    #
    # https://github.com/masonr/yet-another-bench-script #
    # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
    
    Sun 11 Dec 2022 06:20:54 PM CET
    
    Basic System Information:
    ---------------------------------
    Uptime     : 3 days, 3 hours, 19 minutes
    Processor  : Intel(R) Xeon(R) CPU E5-2650 v2 @ 2.60GHz
    CPU cores  : 2 @ 2593.598 MHz
    AES-NI     : ✔ Enabled
    VM-x/AMD-V : ❌ Disabled
    RAM        : 1.9 GiB
    Swap       : 1.9 GiB
    Disk       : 1.9 TiB
    Distro     : Debian GNU/Linux 11 (bullseye)
    Kernel     : 6.0.0-0.deb11.2-amd64
    
    fio Disk Speed Tests (Mixed R/W 50/50):
    ---------------------------------
    Block Size | 4k            (IOPS) | 64k           (IOPS)
      ------   | ---            ----  | ----           ----
    Read       | 35.65 MB/s    (8.9k) | 178.24 MB/s   (2.7k)
    Write      | 35.76 MB/s    (8.9k) | 179.17 MB/s   (2.7k)
    Total      | 71.41 MB/s   (17.8k) | 357.41 MB/s   (5.5k)
               |                      |
    Block Size | 512k          (IOPS) | 1m            (IOPS)
      ------   | ---            ----  | ----           ----
    Read       | 186.46 MB/s    (364) | 191.95 MB/s    (187)
    Write      | 196.36 MB/s    (383) | 204.72 MB/s    (199)
    Total      | 382.83 MB/s    (747) | 396.67 MB/s    (386)
    
    iperf3 Network Speed Tests (IPv4):
    ---------------------------------
    Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
    -----           | -----                     | ----            | ----            | ----
    Clouvider       | London, UK (10G)          | 866 Mbits/sec   | 934 Mbits/sec   | 84.5 ms
    Scaleway        | Paris, FR (10G)           | 930 Mbits/sec   | 929 Mbits/sec   | 83.6 ms
    NovoServe       | North Holland, NL (40G)   | 886 Mbits/sec   | 933 Mbits/sec   | 94.7 ms
    Uztelecom       | Tashkent, UZ (10G)        | 847 Mbits/sec   | 867 Mbits/sec   | 169 ms
    Clouvider       | NYC, NY, US (10G)         | 1.01 Gbits/sec  | 974 Mbits/sec   | 8.01 ms
    Clouvider       | Dallas, TX, US (10G)      | 898 Mbits/sec   | 957 Mbits/sec   | 41.3 ms
    Clouvider       | Los Angeles, CA, US (10G) | 900 Mbits/sec   | 937 Mbits/sec   | 71.7 ms
    
    iperf3 Network Speed Tests (IPv6):
    ---------------------------------
    Provider        | Location (Link)           | Send Speed      | Recv Speed      | Ping
    -----           | -----                     | ----            | ----            | ----
    Clouvider       | London, UK (10G)          | 883 Mbits/sec   | 918 Mbits/sec   | 84.6 ms
    Scaleway        | Paris, FR (10G)           | 903 Mbits/sec   | 913 Mbits/sec   | 90.7 ms
    NovoServe       | North Holland, NL (40G)   | 925 Mbits/sec   | 910 Mbits/sec   | 94.7 ms
    Uztelecom       | Tashkent, UZ (10G)        | 861 Mbits/sec   | 862 Mbits/sec   | 169 ms
    Clouvider       | NYC, NY, US (10G)         | 1.01 Gbits/sec  | 961 Mbits/sec   | 7.72 ms
    Clouvider       | Dallas, TX, US (10G)      | 970 Mbits/sec   | 946 Mbits/sec   | 41.4 ms
    Clouvider       | Los Angeles, CA, US (10G) | 960 Mbits/sec   | 928 Mbits/sec   | 71.8 ms
    
    Geekbench 5 Benchmark Test:
    ---------------------------------
    Test            | Value
                    |
    Single Core     | 633
    Multi Core      | 1069
    Full Test       | https://browser.geekbench.com/v5/cpu/19236048
    

    https://www.vpsbenchmarks.com/yabs/servarica-2c-2gb-29755

  • @lewellyn said:

    @Daniel15 said:

    @melp57 said: Where's the best place for me to learn about using docker?

    Start by installing it and making sure the hello-world image runs: https://docs.docker.com/engine/install/debian/

    then you can just search Google for "Docker tutorial" :) I think linuxserver.io have a decent overview in their docs.

    For production usage, you should learn about "Docker Compose", which lets you provide a list of Docker containers in a docker-compose.yml file, and easily start/stop/upgrade them.

    If you want it to be a bit easier, you can use a UI like Portainer to manage your Docker images.

    Let me just say, as someone who runs containers in a truly production-critical setting (i.e. our container goes down, so do assembly lines and safety systems), docker-compose is a pain in the ass for repeatable and reliable deployments which must work with 100% certainty with zero deviation. It looks like that's what it's for, but there are so many edge cases that make it unsuitable. :(

    Also, from a security perspective, you probably should be trying to run rootless podman containers instead of docker. One huge benefit is that podman is trivial to run from systemd services. Docker is inherently unsuitable for managing containers from a systemd unit. (Dependencies, permissions, etc.) And a rootless container helps ensure good system hygiene even within your containers. You don't leave your web server running as root, so why the rest of the things you're running?

    Podman Getting Started: https://podman.io/getting-started/

    Another huge benefit to going with Podman is that it leaves you closer to your containers "just working" in any Kubernetes environment when you get there. A number of Kubernetes distributions (especially those related to Red Hat/OpenShift) highly encourage not running your containers as root, to avoid accidental cross-container communication or escalation on the host.

    Also, for the most part, it's as easy as alias docker=podman in your shell profile to switch from Docker to Podman! :)

    Thanks for this very helpful information. I'll take your advice, although right now mine isn't production.

  • great offers

  • Nice!

  • Nice offer!!

  • Orangutan -> monyet -> kethek -> monkey :)

  • Interesting offers! Would be curious to see what my ping is like to Montréal as well...

  • @SocksAreComfortable said:
    Interesting offers! Would be curious to see what my ping is like to Montréal as well...

    Looking glass: https://ping.servarica.com

  • @idle said:
    Looking glass: https://ping.servarica.com

    Oh, don't know how I missed that facepalm About 50ms, not too bad!

  • servarica_haniservarica_hani Member, Patron Provider

    This is the end for the period for the giveaway
    Any comment after this is not considered in the drew

    Will start working on the list and will share the files for review before we ask one of the admins to do the drew

    Thanked by 3itoshikimonset bdl ume
  • MOARRRRRRRRR

  • @servarica_hani said:
    This is the end for the period for the giveaway
    Any comment after this is not considered in the drew

    Will start working on the list and will share the files for review before we ask one of the admins to do the drew

    cough

  • servarica_haniservarica_hani Member, Patron Provider

    Sorry for the delay
    The team already did it but I need just to go over it fast to make sure all is good before releasing it

  • servarica_haniservarica_hani Member, Patron Provider

    Here is the list

    Please check it and let me know if we missed anything
    https://docs.google.com/spreadsheets/d/e/2PACX-1vRgvDCRRa4DHrtN2TiKI6pfnl4rv-wqyD75LUnCQ5fUabfGgWiRpH3zjeWQHiG3JVHGwS_WGSolN8FN/pubhtml

    will give it 1 or 2 days for error corrections then will ask @FAT32 if he is available to do the drew

  • @servarica_hani said:
    Here is the list

    Please check it and let me know if we missed anything
    https://docs.google.com/spreadsheets/d/e/2PACX-1vRgvDCRRa4DHrtN2TiKI6pfnl4rv-wqyD75LUnCQ5fUabfGgWiRpH3zjeWQHiG3JVHGwS_WGSolN8FN/pubhtml

    will give it 1 or 2 days for error corrections then will ask @FAT32 if he is available to do the drew

    cough cough cough

  • @TimboJones said:

    @servarica_hani said:
    Here is the list

    Please check it and let me know if we missed anything
    https://docs.google.com/spreadsheets/d/e/2PACX-1vRgvDCRRa4DHrtN2TiKI6pfnl4rv-wqyD75LUnCQ5fUabfGgWiRpH3zjeWQHiG3JVHGwS_WGSolN8FN/pubhtml

    will give it 1 or 2 days for error corrections then will ask @FAT32 if he is available to do the drew

    cough cough cough

    That's a nasty sounding cough, friend. Maybe you need to buy another VPS?

  • TimboJonesTimboJones Member
    edited December 2022

    @user123 said:

    @TimboJones said:

    @servarica_hani said:
    Here is the list

    Please check it and let me know if we missed anything
    https://docs.google.com/spreadsheets/d/e/2PACX-1vRgvDCRRa4DHrtN2TiKI6pfnl4rv-wqyD75LUnCQ5fUabfGgWiRpH3zjeWQHiG3JVHGwS_WGSolN8FN/pubhtml

    will give it 1 or 2 days for error corrections then will ask @FAT32 if he is available to do the drew

    cough cough cough

    That's a nasty sounding cough, friend. Maybe you need to buy another VPS?

    Ironically, I am sick at the moment. I could definitely take a free one, lol.

  • @servarica_hani said:
    Here is the list

    Please check it and let me know if we missed anything
    https://docs.google.com/spreadsheets/d/e/2PACX-1vRgvDCRRa4DHrtN2TiKI6pfnl4rv-wqyD75LUnCQ5fUabfGgWiRpH3zjeWQHiG3JVHGwS_WGSolN8FN/pubhtml

    will give it 1 or 2 days for error corrections then will ask @FAT32 if he is available to do the drew

  • servarica_haniservarica_hani Member, Patron Provider

    Asking @FAT32 if he can do it if not i will do it myself using the same methodology he used in the past

    Thanked by 3user123 bdspice FAT32
Sign In or Register to comment.