Grooper Service: Difference between revisions
Dgreenwood (talk | contribs) |
Dgreenwood (talk | contribs) |
||
| Line 144: | Line 144: | ||
* In this case, the entity checking the status (the Grooper app pool user in IIS) does not have permission to check the service's status. | * In this case, the entity checking the status (the Grooper app pool user in IIS) does not have permission to check the service's status. | ||
* This doesn't necessarily mean the service is not running (nor does it mean it's stopped). It just means the app pool user can't verify its status. | * This doesn't necessarily mean the service is not running (nor does it mean it's stopped). It just means the app pool user can't verify its status. | ||
Example Scenario: | Example Scenario: | ||
Revision as of 11:22, 2 December 2025
Grooper Services are various executable programs that run as a Windows Service to facilitate Grooper processing. Service instances are installed, configured, started and stopped using Grooper Command Console (or in older Grooper versions, Grooper Config).
About
Services are utilities that perform specialized operations within the Grooper environment. The two most common Grooper Services are "Activity Processing" and "Import Watcher".
- Activity Processing is a service that executes processing jobs and tasks in a Batch Process. Running one or more Activity Processing services allows your system to automate Activity tasks when processing document content in a Batch.
- Import Watcher is a service that watches an assigned external storage location, like a Windows folder or an email inbox, and will import its contents into Grooper at designated times or polling cycles. Running one or more Import Watcher services allows your system to automate Batch creation from file content.
Service instances are installed and managed from Grooper Command Console (GCC) using the services commands. More information on installing and managing services can be found in this section of the Grooper Command Console article.
Service types
There are currently 6 different Grooper Services you can install.
- Activity Processing - Executes Activities which perform the work associated with steps in a Batch Process.
- API Services - Exposes a set of API endpoints, enabling 3rd party applications to interact with the Grooper Repository.
- Grooper Licensing - Distributes Grooper licensing to workstations when using the "self-hosted" licensing method.
- Import Watcher - Schedules and runs Import jobs to import file content into Grooper.
- Indexing Service - Synchronizes data to AI Search indexes as documents are added, edited and deleted from the Grooper Repository.
- System Maintenance Service - Runs the "System Maintenance" command on a recurring schedule.
Installing Services
Services are installed from Grooper Command Console using the following command:
services install <connectionNo> <typeName> <userName> <password>
<connectionNo>- Enter the Grooper Repository connection number for which the service is installed.- Unsure what the Grooper Repository's connection number is? Use the
connections listto display all Grooper Repository connections.
- Unsure what the Grooper Repository's connection number is? Use the
<typeName>- Enter the Grooper Service's type name for the service you wish to install.- Unsure what the Service's type name is? Just enter the first three letters.
- Activity Processing =
act - Import Watcher =
imp - Indexing Service =
ind - API Services =
api - System Maintenance Service =
sys - Licensing =
lic
- Activity Processing =
- Unsure what the Service's type name is? Just enter the first three letters.
<userName>- Enter the service user's account name.<password>- Enter the service user's password.
Once installed, Grooper Services should be managed from the Design page using the Machines node. See below for more information.
Managing services from the Design page
Managing services typically involves:
- Starting a service
- Stopping a service
- Editing a service
While it is possible to do some of these things from Grooper Command Console, it is generally easiest to do so from the Design page.
To manage services from the Design page:
- Go to the Design page.
- Navigate to the "Machines" folder.
- To select a service instance first either:
- From the "Machines" tab, select the machine where the service is installed.
- Or, select the "Services" tab to view all services installed on all machines connected to the Grooper Repository.
- Select the service instance you wish to manage.
- To start the service, press the "Start" button (play_circle).
- To stop the service, press the "Stop" button (stop_circle).
- To edit the service instance:
- First stop the service (play_circle).
- Edit the "Service Properties" as needed.
- Press the "Save" button (save).
- Last, start the service (stop_circle).
Things you can't do from the Design page
There are certain things you cannot do from the Design page.
You can't install a service from the Design page.
Services are installed from Grooper Command Console.
You can't uninstall a service from the Design page.
Services are uninstalled from Grooper Command Console.
You can't change a service user/password from the Design page.
You must change a service user (or their password) from the Windows Services system application.
- Open the "Services" app.
- Search for the Grooper service instance (It will be named like the following:
Grooper {ServiceTypeName}, Instance {##}). - Right click it and select "Properties".
- Go to "Log On".
- Adjust the service user as needed.
- Press "Apply" or "OK" when finished.
Additional info
Service user rights
The Grooper Service user account must have the following permissions:
|
Permission |
Type |
Reason |
|
Users |
Local |
Run the installed applications (Grooper) |
|
File store access |
NTFS\Share |
Read and write access to the Grooper file store location |
|
Database access |
SQL |
Read and write access to the Grooper database |
|
Logon As Service |
Local Security Policy |
Run services installed via Grooper Command Console |
These are the minimum permissions required by the Activity Processing service's user account. Other Grooper services may require additional permissions. For example, an Import Watcher's user may need access to directories used for importing file content.
Services with "Error" statuses

When viewing services from the Machines node from the Design page you may see services with an error status.
- Most typically, "Error" indicates the request to get the service's status has failed.
- In this case, the entity checking the status (the Grooper app pool user in IIS) does not have permission to check the service's status.
- This doesn't necessarily mean the service is not running (nor does it mean it's stopped). It just means the app pool user can't verify its status.
Example Scenario:
- The Grooper Web Client is installed on web server named GRPWEB01. The user "DOMAIN\grooperapp" is the app pool user in IIS
- Grooper Activity Processing services are installed on a processing server named GRPACT01.
- The user "DOMAIN\grooperapp" does not have permissions to access GRPACT01. So, it cannot verify the status of services installed on that machine.
- When any user opens up the Grooper web app, they will see the services installed on GRPACT01 listed with an "Error" status.
Addressing "ghost services" - Deleting services from Windows
Very rarely, a Grooper service will not uninstall properly when you uninstall a Grooper service service. Or, a user may delete a Grooper Repository connection or purge a Grooper Repository without uninstalling services first.
This can make it appear as though a duplicate or "ghost" Windows service is installed without being listed in GCC (or Grooper Config before version 2024).
If this does occur, you will need to manually delete the service. If you know the name of the service instance (something like Grooper.ServiceTypeName.##) you need to delete, you can use the following command lines to stop the service (if necessary) and manually delete it.
SC STOP Grooper.ServiceTypeName.## SC DELETE Grooper.ServiceTypeName.##
OR
You can delete the service from the Windows Registry Editor, using the following steps:
- Open the Registry Editor (regedit.exe)
- Navigate to
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services. - Select the key of the service you want to delete.
- Grooper services will always be named something like
Grooper.ServiceTypeName.##
- Grooper services will always be named something like
- From the "Edit" menu select "Delete.
- You will be prompted "Are you sure you want to delete this Key?". Click Yes.
- Exit the Registry Editor.