This file is indexed.

/etc/red5/quartz.properties is in red5-server 1.0~svn4374-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#============================================================================
# Configure Main Scheduler Properties  
#
# http://www.opensymphony.com/quartz/wikidocs/ConfigMain.html
# http://www.opensymphony.com/quartz/api/
#============================================================================

org.quartz.scheduler.instanceName = Red5_Scheduler
org.quartz.scheduler.instanceId = AUTO

# org.quartz.scheduler.classLoadHelper.class
# Defaults to the most robust approach, which is to use the "org.quartz.simpl.CascadingClassLoadHelper" class
# which in turn uses every other ClassLoadHelper class until one works. You should probably not find the need 
# to specify any other class for this property, though strange things seem to happen within application servers. 
# All of the current possible ClassLoadHelper implementation can be found in the org.quartz.simpl package.
# Default helper
org.quartz.scheduler.classLoadHelper.class = org.quartz.simpl.CascadingClassLoadHelper
#org.quartz.scheduler.classLoadHelper.class = org.quartz.simpl.LoadingLoaderClassLoadHelper
#org.quartz.scheduler.classLoadHelper.class = org.quartz.simpl.ThreadContextClassLoadHelper
#org.quartz.scheduler.classLoadHelper.class = org.quartz.simpl.SimpleClassLoadHelper
#org.quartz.scheduler.classLoadHelper.class = org.red5.classloading.QuartzClassLoadHelper

#============================================================================
# Configure ThreadPool  
#============================================================================

org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
org.quartz.threadPool.threadCount = 4
org.quartz.threadPool.threadPriority = 5

#============================================================================
# Configure JobStore  
#============================================================================

org.quartz.jobStore.misfireThreshold = 60000

org.quartz.jobStore.class = org.quartz.simpl.RAMJobStore