Download and decompress the TOA package corresponding to the version of Linux OS on Tencent Cloud.
After decompression is completed, run the cd
command to access the decompressed folder and run the module loading command:
insmod toa.ko
lsmod | grep toa
toa.ko
file in the startup script (the toa.ko
file needs to be reloaded if the server is restarted).echo "insmod xxxxx /toa.ko" >> /etc/rc.local
rmmod path/module name
.rmmod toa.ko
rmmod toa
dmesg -T
If there is no installation package provided for your OS version, you can download the source package of the Linux general version and then compile it to obtain an installation package. The following is the example for CentOS.
wget "https://thunder-pro-mainland-1258348367.cos.ap-guangzhou.myqcloud.com/gaap-toa.rar"
yum install gcc
yum install make
yum install kernel-headers kernel-devel –y
tar zxf gaap-toa.rar
cd toa
make
mv toa.ko /lib/modules/`uname -r`/kernel/net/netfilter/ipvs/toa.ko
insmod /lib/modules/`uname
¬-r`/kernel/net/netfilter/ipvs/toa.ko
lsmod | grep toa
Was this page helpful?