Gateway Upgrade

Gateway

# Version Update History

This module displays the update history for the application security gateway installation package.

Version Update Description
V24.6.1.0 Supports viewing service logs in IDaaS
V24.4.1.0 Base version, supports IDaaS configuration management synchronization, application reverse proxy, and other functions

# Upgrade Operation

# 1. Download and Extract the New Version

## Gateway installation directory
cd /opt/gateway
# Download the latest gateway
wget https://idaas-prod.oss-cn-zhangjiakou.aliyuncs.com/gateway/server/gateway-24.6.1.0.tar.gz

# Extract
tar -zxvf gateway-24.6.1.0.tar.gz

# Move the gateway binary file to the /usr/bin directory for easy execution of the gateway command
mv -f gateway-24.6.1.0/gateway /usr/bin

# Test, success will output the latest gateway version number
gateway version

# Delete the archive (optional)
rm -rf gateway-24.6.1.0.tar.gz
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

# 2. Connect to IDaaS and Start

## Restart the gateway service
gateway service restart

## View service logs
journalctl -u GatewayServer -f

## Delete invalid folders (optional)
rm -rf gateway-24.6.1.0

1
2
3
4
5
6
7
8
9