Rate This Document
Findability
Accuracy
Completeness
Readability

Uninstalling etcd Against Source Code Compilation

  1. Uninstall etcd. If etcd is running, run the following command to stop the process:
    1
    2
    ps -ef | grep etcd
    kill -9 248904
    

    Or

    1
    pkill -9 etcd
    

  2. Delete the directory.
    During source code compilation and installation, only the corresponding file is generated. Therefore, you can directly delete the corresponding directory.
    1
    2
    3
    cd /usr/local
    rm -rf etcd
    ls /usr/local/etcd