Difference between revisions of "Template:Appdata Directory"

From Servarr
Line 1: Line 1:
 +
<noinclude>
 +
<templatedata>
 +
{
 +
"params": {
 +
"ARRNAME": {
 +
"description": "ARR Name",
 +
"example": "Sonarr, Radarr, Lidarr, Readarr",
 +
"type": "string",
 +
"default": "Radarr"
 +
}
 +
}
 +
}
 +
</templatedata>
 +
</noinclude>
 +
 
{{{ARRNAME}}}’s AppData folder contains the databases for logs and general app information, log files and the config file that contains settings required to start the web server. This path is listed on the System Status page in {{{ARRNAME}}}, but if you are unable to access it, here are some common locations for it:
 
{{{ARRNAME}}}’s AppData folder contains the databases for logs and general app information, log files and the config file that contains settings required to start the web server. This path is listed on the System Status page in {{{ARRNAME}}}, but if you are unable to access it, here are some common locations for it:
  

Revision as of 15:59, 17 November 2020

No description.

Template parameters

ParameterDescriptionTypeStatus
ARRNAMEARRNAME

ARR Name

Default
Radarr
Example
Sonarr, Radarr, Lidarr, Readarr
Stringoptional


{{{ARRNAME}}}’s AppData folder contains the databases for logs and general app information, log files and the config file that contains settings required to start the web server. This path is listed on the System Status page in {{{ARRNAME}}}, but if you are unable to access it, here are some common locations for it:

Windows

C:\ProgramData\NzbDrone

C:\ProgramData\{{{ARRNAME}}}

Linux

/home/$USER/.config/NzbDrone (~$USER/.config/NzbDrone)

/home/$USER/.config/{{{ARRNAME}}} (~$USER/.config/{{{ARRNAME}}})

/var/lib/{{{ARRNAME}}}

OS X

/Users/$USER/.config/NzbDrone (~/.config/NzbDrone)

Synology

/usr/local/nzbdrone/var/.config/NzbDrone

/volume1/@appstore/nzbdrone/var/.config/NzbDrone

QNAP

/share/MD0_DATA/homes/admin/.config/NzbDrone

/share/CACHEDEV1_DATA/{{{ARRNAME}}}_CONFIG

Argument

The -data argument forces the location of the AppData folder, so your startup command may be forcing a specific location. This is especially useful when trying to run multiple instances.

user@host ~ $ ps aux | grep -i {{{ARRNAME}}}
{{{ARRNAME}}}     15522 28.3  1.5 3596376 1037600 ?     Ssl  Nov11 291:03 /usr/bin/mono --debug /usr/lib/{{{ARRNAME}}}/{{{ARRNAME}}}.exe -nobrowser -data=/var/lib/{{{ARRNAME}}}
user@host ~ $ sudo systemctl cat {{{ARRNAME}}}
...
ExecStart=/usr/bin/mono --debug /usr/lib/{{{ARRNAME}}}/{{{ARRNAME}}}.exe -nobrowser -data=/var/lib/{{{ARRNAME}}}
...