SingleStoreDB Studio Installation
On this page
Important
Studio is designed to work with MemSQL 6.
Caution
Studio should be installed on a host that is open to local (internal) network traffic only, and not open to the Internet.
Installing Studio can be done easily through the popular package managers on Debian and Red Hat-based distributions.
Network Configuration
The following port setting should be enabled on the host(s) on which Studio is installed.
Protocol |
Default Port |
Direction |
Description |
---|---|---|---|
TCP |
8080 |
Inbound and Outbound |
Default port for Studio. |
Red Hat Distribution
Caution
Studio should be installed on a host that is open to local (internal) network traffic only, and not open to the Internet.
Online Installation
For online installations where you can access the SingleStore YUM repository, run the following steps.
-
Add the SingleStore repository to your repository list.
sudo yum-config-manager --add-repo https://release.memsql.com/production/rpm/x86_64/repodata/memsql.repo -
Verify that the SingleStore repo information is listed under
repolist
.sudo yum repolist -
Install Studio.
sudo yum install -y singlestoredb-studio
Offline Installation
For installation in an environment without Internet access, download the following singlestoredb-studio
package and install it onto your target host.
Install the singlestoredb-studio
package using rpm
.
sudo rpm -ivh /tmp/singlestoredb-studio-<version>.x86_64.rpm
Debian Distribution
Caution
Studio should be installed on a host that is open to local (internal) network traffic only, and not open to the Internet.
Online Installation
For online installations where you can access the SingleStore APT repository, run the following steps.
-
SingleStore packages are signed to ensure integrity, so the GPG key needs to be added to this host.
When done, verify that the SingleStore signing key has been added using apt-key list
.wget -O - 'https://release.memsql.com/release-aug2018.gpg' 2>/dev/null | sudo apt-key add - && apt-key list -
Verify you have
apt-transport-https
installed.apt-cache policy apt-transport-httpsIf
apt-transport-https
is not installed, you must install it before proceeding.user-shell sudo apt -y install apt-transport-https
-
Add the SingleStore repository to retrieve its packages.
echo "deb [arch=amd64] https://release.memsql.com/production/debian memsql main" | sudo tee /etc/apt/sources.list.d/memsql.list -
After verifying the SingleStore repo information is listed in the output, install SingleStoreDB Studio.
sudo apt update && sudo apt -y install singlestoredb-studio
Offline Installation
For installation in an environment without Internet access, download the following singlestoredb-studio
package and install it onto your target machine.
Install the singlestoredb-studio
package using dpkg
.
sudo dpkg -i singlestoredb-studio_<version>_amd64.deb
Set Up SingleStoreDB Studio
Start Studio
Studio will now run the Studio web server on port 8080.
Package-based Installation
Start the singlestoredb-studio
systemd
service using the systemctl start
command.
sudo systemctl start singlestoredb-studio
Recommended: Enable the Studio service to start Studio at system boot.
sudo systemctl enable singlestoredb-studio.service
Created symlink /etc/systemd/system/multi-user.target.wants/memsql-studio.service → /lib/systemd/system/memsql-studio.service.
If your Linux distribution does not use systemd
, you can run Studio directly.nohup
to prevent singlestoredb-studio
from terminating when you close your terminal session.
nohup sudo singlestoredb-studio > studio.stdout 2> studio.stderr < /dev/null &
Tarball-based Installation
SSH into your main deployment host and perform the following:
-
Change to the
singlestoredb-studio-<version>
directory where you unpacked Studio.cd singlestoredb-studio-<version> -
Start Studio from the command line.
Use nohup
to preventsinglestoredb-studio
from terminating when you close your terminal session.nohup ./singlestoredb-studio > studio.stdout 2> studio.stderr < /dev/null &
Add a New Cluster to Studio
-
With Studio running, go to
http://localhost:8080
on your local host and click Add New Cluster to setup a cluster.Important
Studio is only supported on Chrome and Firefox browsers at this time.
To run Studio on a different port, add
port = <port_
toname> /etc/singlestore/singlestoredb-studio.
and restart Studio.hcl -
Paste the Master Aggregator host IP address into Hostname.
-
Set Port to the master aggregator database port for your cluster.
The default is 3306
. -
Specify a valid database user in Username.
-
Enter the Password for your database user.
-
Click Create Cluster Profile and set Type to describe your cluster: Development, Staging, or Production.
-
Fill in Cluster Name and Description to your preference.
After you have successfully logged in, you will see the dashboard for your cluster.
Last modified: September 18, 2023