What links do I need to add?
Opened this issue · 0 comments
Druidblack commented
I copy it to the jacket link http://192.168.1.161:9117/api/v2.0/indexers/rutor/results/torznab/api?apikey=vnj2umvzeyluw6k3kuw2grb6zlyb209w&t=search&cat=&q=
when you try to add it, nothing is added. What am I doing wrong? And is it possible to configure this program to track a specific category on the site? Like TV shows? The jacket is installed in a separate container.
version: '3.7'
services:
jackett-rss-processor:
image: peavers/jackett-rss-processor:latest
container_name: jackett-rss-processor
restart: unless-stopped
ports:
- 8987:8080
environment:
- SPRING_DATA_MONGODB_HOST=jackett-rss-mongo
volumes:
- /srv/config/jackett-rss-processor/watched:/watched
depends_on:
- jackett-rss-mongo
logging:
options:
max-size: "2m"
max-file: "5"
jackett-rss-mongo:
image: mongo:latest
container_name: jackett-rss-mongo
restart: unless-stopped
volumes:
- /srv/config/jackett-rss-processor/mongo-data:/data/db
logging:
options:
max-size: "2m"
max-file: "5"
#volumes:
# mongo-data:
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v2.7.2)
2024-08-18 19:06:56.120 INFO 1 --- [ main] space.forloop.rss.Application : Starting Application using Java 17-ea on 431baf84227d with PID 1 (/app/classes started by root in /)
2024-08-18 19:06:56.124 INFO 1 --- [ main] space.forloop.rss.Application : No active profile set, falling back to 1 default profile: "default"
2024-08-18 19:06:56.171 WARN 1 --- [ main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' imported from location 'class path resource [application.yml]' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: class path resource [application.yml] - 19:13]
2024-08-18 19:06:56.648 INFO 1 --- [ main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2024-08-18 19:06:56.760 INFO 1 --- [ main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 107 ms. Found 2 Reactive MongoDB repository interfaces.
2024-08-18 19:06:57.421 INFO 1 --- [ main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams|spring-boot", "version": "4.6.1"}, "os": {"type": "Linux", "name": "Linux", "architecture": "amd64", "version": "6.1.0-0.deb11.21-amd64"}, "platform": "Java/Oracle Corporation/17-ea+14"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=null, streamFactoryFactory=NettyStreamFactoryFactory{eventLoopGroup=io.netty.channel.nio.NioEventLoopGroup@2e5b7fba, socketChannelClass=class io.netty.channel.socket.nio.NioSocketChannel, allocator=PooledByteBufAllocator(directByDefault: true), sslContext=null}, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@27755487]}, clusterSettings={hosts=[jackett-rss-mongo:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=10000, readTimeoutMS=0, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=10000, readTimeoutMS=10000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=JAVA_LEGACY, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2024-08-18 19:06:57.517 INFO 1 --- [rss-mongo:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:4}] to jackett-rss-mongo:27017
2024-08-18 19:06:57.517 INFO 1 --- [rss-mongo:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:5}] to jackett-rss-mongo:27017
2024-08-18 19:06:57.517 INFO 1 --- [rss-mongo:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=jackett-rss-mongo:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=21, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=50620422}
2024-08-18 19:06:57.916 TRACE 1 --- [ main] o.s.c.a.AnnotationCacheOperationSource : Adding cacheable method 'findAll' with attribute: [Builder[public reactor.core.publisher.Flux space.forloop.rss.controllers.ItemController.findAll(java.lang.String)] caches=[items] | key='' | keyGenerator='' | cacheManager='' | cacheResolver='' | condition='' | unless='' | sync='false']
2024-08-18 19:06:57.937 TRACE 1 --- [ main] o.s.c.a.AnnotationCacheOperationSource : Adding cacheable method 'findAll' with attribute: [Builder[public reactor.core.publisher.Flux space.forloop.rss.controllers.SnatchController.findAll()] caches=[snatched] | key='' | keyGenerator='' | cacheManager='' | cacheResolver='' | condition='' | unless='' | sync='false']
2024-08-18 19:06:58.407 INFO 1 --- [ main] o.s.b.web.embedded.netty.NettyWebServer : Netty started on port 8080
2024-08-18 19:06:58.418 INFO 1 --- [ main] space.forloop.rss.Application : Started Application in 2.683 seconds (JVM running for 3.0)
2024-08-18 19:06:58.506 INFO 1 --- [ntLoopGroup-3-3] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:6}] to jackett-rss-mongo:27017