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

    Server4You Review

    IT Discussion
    vps hosting server4you
    8
    93
    40.6k
    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.
    • dafyreD
      dafyre @Reid Cooper
      last edited by

      @Reid-Cooper I am not sure yet. I figure the only thing that I need to figure out is the multiple IP addresses.

      I wonder if OpenVZ may be better to test in an environment like this.

      Reid CooperR 1 Reply Last reply Reply Quote 0
      • Reid CooperR
        Reid Cooper @dafyre
        last edited by

        @dafyre said:

        @Reid-Cooper I am not sure yet. I figure the only thing that I need to figure out is the multiple IP addresses.

        I wonder if OpenVZ may be better to test in an environment like this.

        Docker and OpenVZ are pretty similar. I think if you can solve the multiple-IP address issue either will work just fine.

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

          @Reid-Cooper said:

          That would be very cool. Can you use Docker with a service like this? How does it handle the extra IPs for the Docker containers?

          You can do a proxy with nginx and have it link to the containers.

          scottalanmillerS dafyreD 2 Replies Last reply Reply Quote 0
          • scottalanmillerS
            scottalanmiller @stacksofplates
            last edited by

            @johnhooks said:

            @Reid-Cooper said:

            That would be very cool. Can you use Docker with a service like this? How does it handle the extra IPs for the Docker containers?

            You can do a proxy with nginx and have it link to the containers.

            That only works if you are doing web pages.

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

              @johnhooks Good idea!

              I need to spend some time with NginX and see how it fares with my OwnCloud instance.

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

                @scottalanmiller you can link the containers together via a port and then nginx to the front facing container. Everything else you just link the containers with a throwaway container to control it and the delete that extra one.

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

                  @johnhooks said:

                  @scottalanmiller you can link the containers together via a port and then nginx to the front facing container. Everything else you just link the containers with a throwaway container to control it and the delete that extra one.

                  Not sure that I understand what you are saying. The individual containers act like individual VMs. But nGinx just does web not "any" traffic.

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

                    @scottalanmiller said:

                    @johnhooks said:

                    @scottalanmiller you can link the containers together via a port and then nginx to the front facing container. Everything else you just link the containers with a throwaway container to control it and the delete that extra one.

                    Not sure that I understand what you are saying. The individual containers act like individual VMs. But nGinx just does web not "any" traffic.

                    Right but you don't really access them via IP unless they're web facing containers. Like MySQL for example. You would create a MySQL container and then create another MySQL container to attach to it with the MySQL prompt. Then create your database, and then delete the second mysql container. Then you link your web app to the original MySQL container and that's how it accesses the database. All of that is done from the host. The only thing you would really be accessing via IP would be something over http. The containers don't even really need a public facing port number, you can link them behind nginx and then use an upstream block to access each http site or app.

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

                      Are you just pointing out that you can create a private, inaccessible network? Of course, you can build your own private addressing.

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

                        @scottalanmiller said:

                        Are you just pointing out that you can create a private, inaccessible network? Of course, you can build your own private addressing.

                        What would you be accessing container wise via IP that's not over http?

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

                          @johnhooks said:

                          What would you be accessing container wise via IP that's not over http?

                          Tons of things. Storage servers, VPN servers, Remote Desktop, SSH, databases, etc. Anything that isn't a web page. HTTP is popular but hardly the only application protocol out there.

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

                            Why does it being a container make HTTP assumed?

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

                              @scottalanmiller said:

                              Why does it being a container make HTTP assumed?

                              It's not but all of those things are done from the host. Not the public facing IP address.

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

                                You would SSH into the host and do a docker exec -it <container name or Id> /bin/bash

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

                                  @johnhooks said:

                                  @scottalanmiller said:

                                  Why does it being a container make HTTP assumed?

                                  It's not but all of those things are done from the host. Not the public facing IP address.

                                  Why would those things be from the host? Why run Docker if you bypass it and run services elsewhere?

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

                                    Or if its an SSH container you give it a -P 8022:22 and access it that way.

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

                                      @scottalanmiller said:

                                      @johnhooks said:

                                      @scottalanmiller said:

                                      Why does it being a container make HTTP assumed?

                                      It's not but all of those things are done from the host. Not the public facing IP address.

                                      Why would those things be from the host? Why run Docker if you bypass it and run services elsewhere?

                                      Like the example above. To make changes in a MySQL database. You would ssh into he host, create a throwaway container to give you the MySQL prompt then delete the container.

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

                                        @johnhooks said:

                                        Like the example above. To make changes in a MySQL database. You would ssh into he host, create a throwaway container to give you the MySQL prompt then delete the container.

                                        That doesn't make sense if MySQL is the service itself. You are exclusively thinking about modifying the service but not about consuming it.

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

                                          Let's take a real world example.... you have Redis running in a Docker container. It needs to talk to Redis instances around the world. As well as its Sentinel services need to do this. How do you expose them?

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

                                            Most of the data that changes would be stored on a volume on the host also. Just for a quick example the /etc/nginx/conf.d folder would be stored in say /var/lib/nginx or whatever folder you create. That way you just add a conf file there and the container reads it. This keeps you from needing to access containers via SSH and keeping them light.

                                            scottalanmillerS 1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 1 / 5
                                            • First post
                                              Last post