Skip to content

Agent Uninstall

Windows Agent Uninstallation

1) Run the uninstall.exe executable located in the directory where the DeepFinder Agent is installed.


2) When the following window appears, click the [Remove] button to proceed with the uninstallation.

Info

If the DeepFinder directory remains after uninstallation, recycle the IIS Application Pool or restart Apache to refresh the service, and then delete the directory.


Linux Agent Uninstallation

DeepFinder Apache Agent Uninstall

1) Run %DeeFinder install path%/bin/uninstall.sh

[root@localhost /]# cd /usr/local/deepfinder/bin
[root@localhost bin]# ./uninstall.sh

2) Restart Apache
After confirming that the Apache configuration entries have been removed, restart Apache.

[root@localhost bin]# [apache_DIR]/bin/apachectl -k reload

DeepFinder Nginx Agent Uninstall

1) Run %DeeFinder install path%/bin/uninstall.sh

[root@localhost /]# cd /usr/local/deepfinder/bin
[root@localhost bin]# ./uninstall.sh

2) Restart Nginx
After confirming that the Nginx configuration entries have been removed, restart Nginx.

[root@localhost bin]# [nginx_DIR]/bin/nginx –s reload

DeepFinder WAS Agent Uninstall

1) Run %DeeFinder install path%/bin/uninstall.sh and then remove configuration files

[root@localhost bin]# ./uninstall.sh
[root@localhost bin]# vi [WAS_DIR]/conf/web.xml      // Remove the DfFilter configuration script
[root@localhost bin]# rm –rf [WAS_DIR]/lib/DfFilter.jar // Remove DfFilter.jar

2) Restart WAS
After deleting the WAS configuration entries, restart the WAS. (Refer to the installation section for configuration details)

[root@localhost ~]# %WAS PATH%/bin/shutdown.sh
[root@localhost ~]# %WAS PATH%/bin/startup.sh