doc-exports/docs/dws/tool/dws_07_0128.html
Lu, Huayi 346ac31da9 DWS TG 8.1.3.200 VERSION
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com>
Reviewed-by: Jiang, Beibei <beibei.jiang@t-systems.com>
Co-authored-by: Lu, Huayi <luhuayi@huawei.com>
Co-committed-by: Lu, Huayi <luhuayi@huawei.com>
2023-08-28 09:20:17 +00:00

3.6 KiB

Stopping GDS

Scenarios

Stop GDS after data is imported successfully.

Procedure

  1. Log in as user gds_user to the data server where GDS is installed.
  2. Select the mode of stopping GDS based on the mode of starting it.

    • If GDS is started using the gds command, perform the following operations to stop GDS:
      1. Query the GDS process ID:
        ps -ef|grep gds

        For example, the GDS process ID is 128954.

        ps -ef|grep gds
        gds_user 128954      1  0 15:03 ?        00:00:00 gds -d /input_data/ -p 192.168.0.90:5000 -l /log/gds_log.txt -D
        gds_user 129003 118723  0 15:04 pts/0    00:00:00 grep gds
      2. Run the kill command to stop GDS. 128954 in the command is the GDS process ID.
        kill -9 128954