Disable/Uninstall Agent

Method #1(Quickest): Disabling tCell via the user interface

  1. Log in to your tCell console.
  2. Open the "Policies" screen and select the "Overview" tab.
  3. Uncheck or disable every feature.
  4. Click Deploy.

Method #2(Complete uninstall): Removing the agent

  1. Do one of the following

    • Remove the following lines from your wsgi file:
      1
      os.environ['TCELL_AGENT_CONFIG'] = '/var/www/html/tcell/tcell_agent.config'
      2
      os.environ['TCELL_AGENT_HOME'] = '/var/www/html/tcell'
      3
      import tcell_agent
      4
      tcell_agent.init()
    • Remove tcell_agent run from the command to start your application.
  2. Delete the tcell_agent.config from your tcell directory(generally /var/www/html/tcell)

  3. Uninstall the tCell agent.

    1
    pip uninstall tcell_agent
  4. Restart the server.