Install metabase on Tencent Cloud Server

1. One Tencent Cloud server

2. You need to install java jdk first

jdk installation package: Link: https://pan.baidu.com/s/1sZKfbTNT5s-mVLqJI9Fy6g Extraction code: ocdi 

3. The jdk installation package is placed in the /opt folder, and the directory can be selected according to your own preferences, but when configuring the environment variables later, you must correspond to the installation directory.

Unzip and install:

 tar -xzf jdk-18_linux-x64_bin.tar.gz

folder after decompression

4. Configure environment variables vim /etc/profile

 Press i to enter edit mode

export JAVA_HOME=/opt/jdk-18.0.2.1
export CLASSPATH=.:$JAVA_HOME/lib
export PATH=$PATH:$JAVA_HOME/bin

Note: /opt/jdk-18.0.2.1 is the decompressed directory, adjust accordingly according to the directory you installed.

vim save command:

In the state of the English input method, press esc, press the colon:, then enter wq, and press enter.

5. Verify the java installation

java -version

 6. Metabase installation jar package

Metabase jar package location

Link: https://pan.baidu.com/s/169H4n95h8999TReYWGBBcA Extraction code: 1b91 

7. Put the metabase under /opt

8. Start the metabase command:

java -jar metabase.jar

9. Remote login:

Server public network address: 3000

Download various versions of metabase

Available Versions

If in doubt, please pay attention to the public account Baima Feima data analysis

Guess you like

Origin blog.csdn.net/sunzongpeng/article/details/127258010