Install SingleStore Tools
The following instructions can be used to install SingleStore Tools.
Install SingleStore Tools
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
Verify that the
which
package is installed. This is used during the install process to identify the correct package type for your installation.rpm -q which
If
which
is not installed, you must install it before proceeding.sudo yum install -y which
Install SingleStoreDB Toolbox and client application.
sudo yum install -y singlestoredb-toolbox singlestore-client
Offline Installation
For clusters that must be deployed in an environment without Internet access, download the following SingleStore packages onto a device with access to each host in the cluster.
Transfer then install the singlestoredb-toolbox
and singlestore-client
packages on the Master Aggregator using rpm
.
sudo rpm -ivh /tmp/singlestoredb-toolbox-<version>.x86_64.rpm
sudo rpm -ivh /tmp/singlestore-client-<version>.x86_64.rpm
Transfer then install the singlestoredb-server
package on each host using rpm
.
sudo rpm -ivh /tmp/singlestoredb-server-<version>.x86_64.rpm
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
l.wget -O - 'https://release.memsql.com/release-aug2018.gpg' 2>/dev/null | sudo apt-key add - && apt-key list
Verify that
apt-transport-https
is installed. Theapt-transport-https
package is used to download packages from the SingleStore package repository.apt-cache policy apt-transport-https
If
apt-transport-https
is not installed, you must install it before proceeding.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 Toolbox and client application.
sudo apt update && sudo apt -y install singlestoredb-toolbox singlestore-client
Offline Installation
For clusters that must be deployed in an environment without Internet access, download the following SingleStore packages onto a device with access to each host in the cluster.
Transfer then install the singlestoredb-toolbox
and singlestore-client
packages on the Master Aggregator using dpkg
.
sudo dpkg -i singlestoredb-toolbox_<version>_amd64.deb
sudo dpkg -i singlestore-client_<version>_amd64.deb
Transfer then install the singlestoredb-server
package on each host using dpkg
.
sudo dpkg -i singlestoredb-server_<version>_amd64.deb