...
GDE Core Linux running requirement is Dotnet Core 37.1. 0 You can install using the commands below.
Dotnet Core | 37. | 1 0 Setup |
|
GDE Linux Setup | ||
---|---|---|
| ||
| ||
|
...
Info |
---|
MACOS Dotnet 37.1 0 Kurulumu |
---|
|
|
|
...
Setting file (default.json)
Settings are available on the GEODI server in the default.json.sample file in the <GEODI_APP>/Settings/Geodi.DesktopExplorer. The *.sample extension is activated by removing it from the file. GDE installations will automatically retrieve these settings from the server.
Settings can be changed after setup and while indexing is in progress, changes will take effect in about 1h.
To scan different directory on multiple machines:
If files named <ClientIP>.json , <ClientUserName>.json or <ClientMachineName>.json are added in the <GEODI_APP>/Settings/Geodi.DesktopExplorer directory, these files will only be used for the relevant computer.
Code Block | ||
---|---|---|
| ||
{ "FolderList": ["%UserProfile%"],// "*" karakteriscan tümall dizinleri tarardirectory // "ExplorerPort": 1982, "IgnoreFiles":["*.MP4","*.MOV","*.MP3"], "MetaData": { "LDAPDN":"=d.CurrentUser!=null?d.CurrentUser.DistinguishedName:null", "IP":"=d.ClientIP", "ComputerName":"=d.ClientMachineName", "UserName":"=d.ClientUserName" } } |
...
Setting Name | Type | Description |
---|---|---|
FolderList | string[]* | Used to specify the folders to be scanned. Folders can be identified by separating them with "," The default directory is %UserProfile% (includes documents, downloads, desktop...). A complete list can be found at https://docs.microsoft.com/tr-tr/dotnet/api/system.environment.specialfolder?view=netframework-4.0. Values are case sensitive. Subdirectories can also be defined as %UserProfile%\\Desktop. You can use ["*"] if you want to scan all disks. |
ExplorerPort | int | If a value above 0 is entered, Explorer will run in APP→GEODI→APP mode. Firewall settings must be made in this mode. When a port to be used is defined, as long as the client is open, the content can be viewed on Geodi. |
EnableLDAP | bool | If true value is given, LDAP authorizations of the files are also indexed. Default value: false |
IgnoreFolders | string[] | List of folders to ignore. * is accepted. Used in combination with the settings under Geodi Settings/IgnoreFolders. Example: Default value: null |
IgnoreFiles | string[] | List of folders to ignore. * is accepted. Used in combination with the settings under Geodi Settings/IgnoreFileTypes. Default value: |
Metadata | You can define metadata for parsing files from clients. These metadata are specified in the settings file. The values used in the default settings can be seen in the example file. Searching with metadata is done with <metaname>:<value> Example The defined metadata and their values will be visible in the GEODI search interface. |
...