Deployment FAQs

Operating system requirements

  • What are the required operating system versions for deploying MatrixOne?

For standalone installation, MatrixOne supports the following operating system:

Linux OSVersion
Red Hat Enterprise Linux7.3 or later 7.x releases
CentOS7.3 or later 7.x releases
Oracle Enterprise Linux7.3 or later 7.x releases
Ubuntu LTS22.04 or later

MatrixOne also supports macOS operating system, but it’s only recommended to run as a test and development environment.

macOSVersion
macOSMonterey 12.3 or later

Hardware requirements

  • What are the required hardware for deploying MatrixOne?

For standalone installation, MatrixOne can be running on the 64-bit generic hardware server platform in the Intel x86-64 architecture. The requirements and recommendations about server hardware configuration for development, testing and production environments are as follows:

  • Development and testing environments
CPUMemoryLocal Storage
4 core+16 GB+SSD/HDD 200 GB+

The Macbook M1/M2 with ARM architecture is also a good fit for a development environment.

  • Production environment
CPUMemoryLocal Storage
16 core+64 GB+SSD/HDD 500 GB+

Installation and deployment

  • What settings do I need to change for installation?

Normally you don’t need to change anything for installation. A default setting of system_vars_config.toml is enough to run MatrixOne directly. But if you want to customize your listening port, ip address, stored data files path, you may modify the corresponding records ofsystem_vars_config.toml.

  • After the MySQL client is installed, I open the terminal and run mysql, I got an error of command not found: mysql.

To solve the error, you need to set the environment variable. Run the following command:

  1. export PATH=${PATH}:/usr/local/mysql/bin
  • When I install MatrixOne by building from source, I got an error of the following and the build failed, how can I proceed?

Error: Get "https://proxy.golang.org/........": dial tcp 142.251.43.17:443: i/o timeout

As MatrixOne needs many go libraries as dependency, it downloads them at the time of building it. This is an error of downloading timeout, it’s mostly a networking issue. If you are using a Chinese mainland network, you need to set your go environment to a Chinese image site to accelerate the go library downloading. If you check your go environment by go env, you may see GOPROXY="https://proxy.golang.org,direct", you need to set it by

  1. go env -w GOPROXY=https://goproxy.cn,direct

Then the make build should be fast enough to finish.

  • When I was testing MatrixOne with MO-tester, I got an error of too many open files?

MO-tester will open and close many SQL files in a high speed to test MatrixOne, this kind of usage will easily reach the maximum open file limit of Linux and macOS, which is the reason for the too many open files error.

  • For MacOS, you can just set the open file limit by a simple command:
  1. ulimit -n 65536
  • For Linux, please refer to this detailed guide to set the ulimit to 100000.

After setting this value, there will be no more too many open files error.

  • Ssb-dbgen cannot be compiled on a PC with M1 chip

To complete the following configuration, then compiling ‘SSB-DBgen’ for a PC with M1 chip:

  1. Download and install GCC11.

  2. To ensure the gcc-11 is successful installed, run the following command:

    1. gcc-11 -v

    The successful result is as below:

    1. Using built-in specs.
    2. COLLECT_GCC=gcc-11
    3. COLLECT_LTO_WRAPPER=/opt/homebrew/Cellar/gcc@11/11.3.0/bin/../libexec/gcc/aarch64-apple-darwin21/11/lto-wrapper
    4. Target: aarch64-apple-darwin21
    5. Configured with: ../configure --prefix=/opt/homebrew/opt/gcc@11 --libdir=/opt/homebrew/opt/gcc@11/lib/gcc/11 --disable-nls --enable-checking=release --with-gcc-major-version-only --enable-languages=c,c++,objc,obj-c++,fortran --program-suffix=-11 --with-gmp=/opt/homebrew/opt/gmp --with-mpfr=/opt/homebrew/opt/mpfr --with-mpc=/opt/homebrew/opt/libmpc --with-isl=/opt/homebrew/opt/isl --with-zstd=/opt/homebrew/opt/zstd --with-pkgversion='Homebrew GCC 11.3.0' --with-bugurl=https://github.com/Homebrew/homebrew-core/issues --build=aarch64-apple-darwin21 --with-system-zlib --with-sysroot=/Library/Developer/CommandLineTools/SDKs/MacOSX12.sdk
    6. Thread model: posix
    7. Supported LTO compression algorithms: zlib zstd
    8. gcc version 11.3.0 (Homebrew GCC 11.3.0)
  3. Modify the bm_utils.c file in the ssb-dbgen directory:

    • Change the #include <malloc.h> in line 41 to #include <sys/malloc.h>

    • Change the open(fullpath, ((*mode == 'r')?O_RDONLY:O_WRONLY)|O_CREAT|O_LARGEFILE,0644); in line 398 to open(fullpath, ((*mode == 'r')?O_RDONLY:O_WRONLY)|O_CREAT,0644);

  4. Modify the varsub.c file in the ssb-dbgen directory:

    • Change the #include <malloc.h> in line 5 to #include <sys/malloc.h>
  5. Modify the makefile file in the ssb-dbgen directory:

    • Change the CC = gcc in line 5 to CC = gcc-11
  6. Enter into ssb-dbgen directory again and compile:

    1. cd ssb-dbgen
    2. make
  7. Check the ssb-dbgen directory, when the the dbgen file is generated, indicating that the compilation is successful.