ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Containers in IT

    IT Discussion
    docker lxc containers
    8
    39
    6.7k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • scottalanmillerS
      scottalanmiller @coliver
      last edited by

      @coliver said:

      Webservers or proxies/load balancers would be my first guess.

      Yes, application servers (web or otherwise) are the vast majority of these.

      dafyreD 1 Reply Last reply Reply Quote 0
      • scottalanmillerS
        scottalanmiller
        last edited by

        Some people put database clusters into containers with the understanding that they have to all be in sync all the time and that at least three or more have to never shut down. I don't like that model, though.

        1 Reply Last reply Reply Quote 0
        • dafyreD
          dafyre @scottalanmiller
          last edited by dafyre

          @scottalanmiller said:

          @coliver said:

          Webservers or proxies/load balancers would be my first guess.

          Yes, application servers (web or otherwise) are the vast majority of these.

          Pretty much anything that has relatively static content, right? You wouldn't host say... a Wordpress install in a container, would you?

          Edit: Even if you do keep the Database server somewhere else.

          scottalanmillerS 1 Reply Last reply Reply Quote 0
          • scottalanmillerS
            scottalanmiller @dafyre
            last edited by

            @dafyre said:

            Pretty much anything that has relatively static content, right? You wouldn't host say... a Wordpress install in a container, would you?

            Normally yes and normally, yes. LOL. You would expect Wordpress to update very infrequently (other than what is in the database) and you would rebuild the container if and when that happened. Or you would put the non-static content, which is generally very tiny amounts, into a shared NFS share.

            1 Reply Last reply Reply Quote 1
            • DashrenderD
              Dashrender
              last edited by

              So the application - the web daemon - can be in a container, and it just pulls data from sources behind it. OK.

              This is for load balancing?

              scottalanmillerS coliverC 2 Replies Last reply Reply Quote 0
              • scottalanmillerS
                scottalanmiller @Dashrender
                last edited by

                @Dashrender said:

                So the application - the web daemon - can be in a container, and it just pulls data from sources behind it. OK.

                This is for load balancing?

                If it is a load balancer like HA-Proxy that we are discussing, yes.

                1 Reply Last reply Reply Quote 0
                • coliverC
                  coliver @Dashrender
                  last edited by

                  @Dashrender said:

                  So the application - the web daemon - can be in a container, and it just pulls data from sources behind it. OK.

                  This is for load balancing?

                  This is what I am wondering too. What is the advantage of a container over a VM? Both can be built and destroyed in moments but the VM has added flexibility that the container doesn't necessarily have. Would this be for performance and resource utilization?

                  scottalanmillerS 1 Reply Last reply Reply Quote 0
                  • scottalanmillerS
                    scottalanmiller @coliver
                    last edited by

                    @coliver said:

                    @Dashrender said:

                    So the application - the web daemon - can be in a container, and it just pulls data from sources behind it. OK.

                    This is for load balancing?

                    This is what I am wondering too. What is the advantage of a container over a VM? Both can be built and destroyed in moments but the VM has added flexibility that the container doesn't necessarily have. Would this be for performance and resource utilization?

                    Containers are lighter and faster, have different licensing concerns, are smaller to deploy, smaller to store, easier to pass around, etc.

                    1 Reply Last reply Reply Quote 1
                    • scottalanmillerS
                      scottalanmiller
                      last edited by

                      Also, containers provide some of these features for shops too small to have cloud to do this with VMs.

                      dafyreD 1 Reply Last reply Reply Quote 0
                      • dafyreD
                        dafyre @scottalanmiller
                        last edited by

                        @scottalanmiller said:

                        Also, containers provide some of these features for shops too small to have cloud to do this with VMs.

                        Like you were talking about earlier... Doing both can be beneficial. Have a couple of big VMs for LXC containers, and what-not... You get the benefits of both virtualization and containers.

                        1 Reply Last reply Reply Quote 2
                        • scottalanmillerS
                          scottalanmiller
                          last edited by

                          Yes, and I think that that is the direction that we will see most companies go.

                          1 Reply Last reply Reply Quote 0
                          • stacksofplatesS
                            stacksofplates
                            last edited by stacksofplates

                            That's what I have. I have a VM that hosts LXC containers. I have XO in one container. It makes updating easy. I can use ansible to either clone the container and update XO or just fire up a new container and install XO quickly. I don't need things like reboot scripts then because I can just include that in the ansible playbook and reboots take about 1 second.

                            It also allows me to pass variables to the playbook so I can install XO from different git branches.

                            Another advantage is if you want to send a file to another container you can just copy from the container directory and put it inside the other container. Very quick with large files vs using the network. That is assuming you're using a dir backing store and not a logical volume or something else.

                            1 Reply Last reply Reply Quote 2
                            • stacksofplatesS
                              stacksofplates
                              last edited by

                              Ubuntu is making some big strides with LXC. they call it LXD and it will have live migration of containers.

                              scottalanmillerS 1 Reply Last reply Reply Quote 1
                              • RamblingBipedR
                                RamblingBiped
                                last edited by

                                I have a small EC2 instance running a containerized instance of discourse for a set of support forums we use for supporting a specific product. It has been up for ~8 months without issue.

                                1 Reply Last reply Reply Quote 2
                                • stacksofplatesS
                                  stacksofplates
                                  last edited by

                                  I also have my website in an unprivileged container. That way if someone were to gain root access to the web server and somehow break out of the container, the only thing they can affect is the home folder for that non-sudo user.

                                  1 Reply Last reply Reply Quote 2
                                  • wirestyle22W
                                    wirestyle22
                                    last edited by wirestyle22

                                    Sorry to necro this but it's relevant to my new job. My understanding of the benefit of containers is resource management. Hypervisors emulate virtual hardware essentially and they are more resource intensive because of that where as containers use a shared operating system which makes them much more efficient resource wise but also creates limitations. You can also have more server applications running for less money (reduced cost of hardware). Especially if you have a reason to run multiple copies of an application. There are positives and negatives to it.

                                    Am I looking at this correctly @scottalanmiller ?

                                    RamblingBipedR scottalanmillerS 2 Replies Last reply Reply Quote 0
                                    • RamblingBipedR
                                      RamblingBiped @wirestyle22
                                      last edited by RamblingBiped

                                      @wirestyle22 It also allows you to add in additional levels of security by essentially walling off each instance of a service versus running said service in parallel with other services that your application(s) might depend upon. So instead of having a single virtual machine running Apache, MySQL, and PHP; you'd have a container for each service, each with their own hardened attack surface. Also, it allows for a more efficient and responsive dynamic scaling model for applications that is mostly platform independant.

                                      wirestyle22W scottalanmillerS 2 Replies Last reply Reply Quote 2
                                      • wirestyle22W
                                        wirestyle22 @RamblingBiped
                                        last edited by

                                        @RamblingBiped said in Containers in IT:

                                        @wirestyle22 It also allows you to add in additional levels of security by essentially walling off each instance of a service versus running said service in parallel with other services that your application(s) might depend upon. So instead of having a single virtual machine running Apache, MySQL, and PHP; you'd have a container for each service, each with their own hardened attack surface. Also, it allows for a more efficient and responsive dynamic scaling model for applications that is mostly platform independant.

                                        Makes sense

                                        1 Reply Last reply Reply Quote 0
                                        • RamblingBipedR
                                          RamblingBiped
                                          last edited by

                                          The tough part when it comes to dealing with containers (at least for me), is picking the platform you are going to run them on and then learning all the tools.

                                          Do you use Docker? Rocket? LXC?

                                          Do you automate configuration management and deployment using Puppet? Chef? Ansible?

                                          Do you run them bare metal or nest them in VM instances on a Hypervisor/Cluster?

                                          And those are just the tools that come to mind. You also need a certain level of proficiency when it comes to shell scripting, and many of the other frequently used languages (Python, Ruby, Javascript, PHP...).

                                          There are so many pieces of the puzzle that really need to be in place before containerization of workloads can become a viable replacement for current virtualized infrastructures. There are many projects that have already adopted the format and written their own scripts/APIs to really simplify the process of deploying and maintaining their products in containers. Discourse forum software is a great example. Everything is managed from a single script, instead of having to interface with Docker directly.

                                          scottalanmillerS 1 Reply Last reply Reply Quote 1
                                          • scottalanmillerS
                                            scottalanmiller @stacksofplates
                                            last edited by

                                            @johnhooks said in Containers in IT:

                                            Ubuntu is making some big strides with LXC. they call it LXD and it will have live migration of containers.

                                            LXD is actually a management layer of LXC. Ubuntu is very vocal that it is still LXC containers, just with the extra LXD technology on top making it nicer than usual.

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 1 / 2
                                            • First post
                                              Last post