https://hub.docker.com/r/skyscrapers/teleport
https://github.com/tp4a/teleport/releases
https://www.tp4a.com/download
tar -zxvf teleport-linux-3.2.2.tar.gz
cd teleport-linux-3.2.2
./setup.sh
默认的安装路径/usr/local/teleport
默认的录像回放文件位于/usr/local/teleport/data/replay
如果您需要更改默认端口号,请修改配置文件(注意,两个配置文件均涉及到web端口,要一并修改)。
# /usr/local/teleport/data/etc/web.ini
# /usr/local/teleport/data/etc/core.ini
重要提示:修改完配置文件后,需要重新启动teleport服务使修改生效!
http://teleport服务器IP:7190/ 默认账号为admin,密码为admin
-操作完整的 teleport 服务:
启动: /etc/init.d/teleport start
停止: /etc/init.d/teleport stop
重启: /etc/init.d/teleport restart
查看运行状态: /etc/init.d/teleport status
-仅操作核心服务 core:
启动: /etc/init.d/teleport start core
停止: /etc/init.d/teleport stop core
重启: /etc/init.d/teleport restart core
-仅操作网页服务 web:
启动: /etc/init.d/teleport start web
停止: /etc/init.d/teleport stop web
重启: /etc/init.d/teleport restart web
#编译
yum install -y centos-release-scl-rh devtoolset-8-build devtoolset-8-gdb devtoolset-8-gcc devtoolset-8-gcc-c++
yum install -y git automake libtool zip unzip
yum install -y libffi-devel zlib-devel
yum install -y dos2unix
https://www.jetbrains.com/clion/download/
wget https://download.jetbrains.com.cn/cpp/CLion-2021.2.3.tar.gz
tar zxvf CLion-2021.2.3.tar.gz
cp -r clion-2021.2.3/bin/cmake/linux /opt/cmake
ln /opt/cmake/bin/cmake /usr/local/bin/cmake
-查看 CMake 版本
cmake --version
cp config.ini.in config.ini
vim /opt/teleport-3.2.2/config.ini
# if not set cmake path, default to '/usr/bin/cmake'
cmake = /opt/cmake/bin/cmake
cp /opt/teleport-3.2.2/build.sh.in /opt/teleport-3.2.2/build.sh
sudo -u admin sh /opt/teleport-3.2.2/build.sh