How do I install Studio without Internet access?

What is the recommended way to install Studio on a host without internet?

Is there a url download available?

1 Like

You can the see the location of the latest packages using curl and/or wget
curl -L release.memsql.com/production/index/memsqlstudio/latest.json

                                     Dload  Upload   Total   Spent    Left  Speed
    100   183  100   183    0     0    385      0 --:--:-- --:--:-- --:--:--   385
    100   607  100   607    0     0    732      0 --:--:-- --:--:-- --:--:--  4019
    {
      "releaseID": "63759ef2-af61-4a47-9d4e-59703c5b5055",
      "version": "1.3.3",
      "commit": "58204191484dccd2c0bd3203f45d04aa4872e015",
      "packages": {
        "memsql-studio-deb": {
          "Path": "production/debian/pool/memsql-studio_1.3.3_5820419148_amd64.deb",
          "Sha256Sum": "3a666b9d6b7ae421ad4a27d21aa75869423f7e75e0240ab972f6bacddf0bb8c3"
        },
        "memsql-studio-rpm": {
          "Path": "production/rpm/x86_64/memsql-studio-1.3.3-5820419148.x86_64.rpm",
          "Sha256Sum": "5bccba0d8ce313842e00e2ba42bb26f4bf60859dd3c277f575544e1ba3f85757"
        }
      }
    }

then download either the deb or rpm file as appropriate from release.memsql.com using the path component above, and install using rpm -i or dpkg -i. Note this is all one long command line in this example:

wget release.memsql.com/production/debian/pool/memsql-studio_1.3.3_5820419148_amd64.deb; dpkg -i memsql-studio_1.3.3_5820419148_amd64.deb