Internal Server Error with no logs Seafile CE 8.0.6 with Debian 10

Hi there I have this problem already installed Seafile CE 8.0.6 on fresh Debian 10 (VMWare Workstation 16) several times :cry: but with same problem. I keep trying because the first time (testing) worked fine but besides that no luck (re-installed because tested whit a very small hdd).

seafile.sh starts fine an seahub.sh too…
in nmap seem like the ports are opened on the IP address and localhost too.

PORT STATE SERVICE
22/tcp open ssh
80/tcp open http
3306/tcp open mysql (on localhost)
8000/tcp open http-alt
8082/tcp open blackice-alerts

running with Nginx and apache2 too reproduces the problem (Internal Server Error)

no errors on logs folder on installation folder or Nginx logs folder

I think it’s a python3.7 dependency problem. but I’m blind don’t know how can I debug this…

– ccnet.conf –
[General]
SERVICE_URL = http: // 192.168.1.9:8000/

[Database]
ENGINE = mysql
HOST = 127.0.0.1
PORT = 3306
USER = seafadmin
PASSWD = XXXX
DB = ccnet-db
CONNECTION_CHARSET = utf8

– Seafile.conf –

[fileserver]
port = 8082

[database]
type = mysql
host = 127.0.0.1
port = 3306
user = seafadmin
password = XXXX
db_name = seafile-db
connection_charset = utf8

[general]
enable_syslog = true

– Gunicorn.conf.py –

import os

daemon = True
workers = 5

default localhost:8000

bind = “0.0.0.0:8000”

Pid

pids_dir = ‘/opt/seafile/pids’
pidfile = os.path.join(pids_dir, ‘seahub.pid’)

for file upload, we need a longer timeout value (default is only 30s, too short)

timeout = 1200

limit_request_line = 8190

– sahib-settings.py –

SECRET_KEY = “the_secret”

DATABASES = {
‘default’: {
‘ENGINE’: ‘django.db.backends.mysql’,
‘NAME’: ‘seahub-db’,
‘USER’: ‘seafadmin’,
‘PASSWORD’: ‘XXXX’,
‘HOST’: ‘127.0.0.1’,
‘PORT’: ‘3306’
}
}

CACHES = {
‘default’: {
‘BACKEND’: ‘django_pylibmc.memcached.PyLibMCCache’,
‘LOCATION’: ‘127.0.0.1:11211’,
},
}

as you can see its very basic config but I think the necessary to work…

the folders has the seafadmin user permissions

I tested in localhost, and thru network pc

any help I appreciate.

Greetings

You can add DEBUG=True in seahub_settings.py and you can also check seahub.log for error logs.

:sob: :sob: :sob: (joy tears) that’s help me!! was captcha.fields

appreciate your help Daniel!