Hello @Kynn
Iâm trying to use on my ARM32v7 ( Odroid HC1 ) your docker image (version .1 because @Muffin_King explained the .2 doesnât works currently), and this doesnât seems to works. Is it possible to have some help please ?
Thanks
My docker-compose.yml (password / MYDOMAIN / MYEMAIL have been replaced) :
version: '2.0'
services:
db:
image: tobi312/rpi-mariadb:10.1-alpine
container_name: seafile-mysql
environment:
- MYSQL_ROOT_PASSWORD=asecret # Requested, set the root's password of MySQL service.
- MYSQL_LOG_CONSOLE=true
volumes:
- /opt/seafile-mysql/db:/var/lib/mysql # Requested, specifies the path to MySQL data persistent store.
networks:
- seafile-net
memcached:
image: memcached:1.5.6
container_name: seafile-memcached
entrypoint: memcached -m 256
networks:
- seafile-net
seafile:
image: kynn/seafile-rpi:7.1.4-2020.08.1
container_name: seafile
ports:
- "8082:80"
- "8083:443" # If https is enabled, cancel the comment.
volumes:
- /mnt/ssd-backups/sync:/shared # Requested, specifies the path to Seafile data persistent store.
environment:
- DB_HOST=db
- DB_ROOT_PASSWD=asecret # Requested, the value shuold be root's password of MySQL service.
- TIME_ZONE=Europe/Paris # Optional, default is UTC. Should be uncomment and set to your local time zone.
- SEAFILE_ADMIN_EMAIL=guillaume@MYEMAIL # Specifies Seafile admin user, default is 'me@example.com'
- SEAFILE_ADMIN_PASSWORD=admin # Specifies Seafile admin password, default is 'asecret'
- SEAFILE_SERVER_LETSENCRYPT=true # Whether to use https or not
- SEAFILE_SERVER_HOSTNAME=sync.MYDOMAIN # Specifies your host name if https is enabled
depends_on:
- db
- memcached
networks:
- seafile-net
networks:
seafile-net:
And the command line logs:
guillaume@box /o/seafile> dkc up
Creating network "seafile_seafile-net" with the default driver
Pulling db (tobi312/rpi-mariadb:10.1-alpine)...
10.1-alpine: Pulling from tobi312/rpi-mariadb
1debd7fe5349: Pull complete
[ truncated ]
Attaching to seafile-mysql, seafile-memcached, seafile
seafile-mysql | 2020-09-03T07:40:42+0000 [Note] [Entrypoint]: Entrypoint script for MySQL Server 10.1 started.
seafile-mysql | 2020-09-03T07:40:43+0000 [Note] [Entrypoint]: Switching to dedicated user 'mysql'
seafile-mysql | 2020-09-03T07:40:43+0000 [Note] [Entrypoint]: Entrypoint script for MySQL Server 10.1 started.
seafile-mysql | 2020-09-03T07:40:43+0000 [Note] [Entrypoint]: Initializing database files
seafile-mysql | 2020-09-03 7:40:43 3069322456 [Note] /usr/bin/mysqld (mysqld 10.1.41-MariaDB) starting as process 80 ...
seafile-mysql | 2020-09-03 7:40:44 3069322456 [Note] InnoDB: innodb_empty_free_list_algorithm has been changed to legacy because of small buffer pool size. In order to use backoff, increase buffer pool at least up to 20MB.
seafile-mysql |
seafile-mysql | 2020-09-03 7:40:44 3069322456 [Note] InnoDB: Using mutexes to ref count buffer pool pages
seafile-mysql | 2020-09-03 7:40:44 3069322456 [Note] InnoDB: The InnoDB memory heap is disabled
seafile-mysql | 2020-09-03 7:40:44 3069322456 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
seafile-mysql | 2020-09-03 7:40:44 3069322456 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
seafile-mysql | 2020-09-03 7:40:44 3069322456 [Note] InnoDB: Compressed tables use zlib 1.2.11
seafile-mysql | 2020-09-03 7:40:44 3069322456 [Note] InnoDB: Using Linux native AIO
seafile-mysql | 2020-09-03 7:40:44 3069322456 [Note] InnoDB: Using generic crc32 instructions
seafile-mysql | 2020-09-03 7:40:44 3069322456 [Note] InnoDB: Initializing buffer pool, size = 128.0M
seafile-mysql | 2020-09-03 7:40:44 3069322456 [Note] InnoDB: Completed initialization of buffer pool
seafile-mysql | 2020-09-03 7:40:44 3069322456 [Note] InnoDB: The first specified data file ./ibdata1 did not exist: a new database to be created!
seafile-mysql | 2020-09-03 7:40:44 3069322456 [Note] InnoDB: Setting file ./ibdata1 size to 12 MB
seafile-mysql | 2020-09-03 7:40:45 3069322456 [Note] InnoDB: Setting log file ./ib_logfile101 size to 48 MB
seafile-mysql | 2020-09-03 7:40:46 3069322456 [Note] InnoDB: Setting log file ./ib_logfile1 size to 48 MB
seafile | *** Running /etc/my_init.d/01_create_data_links.sh...
seafile-mysql | 2020-09-03 7:40:49 3069322456 [Note] InnoDB: Renaming log file ./ib_logfile101 to ./ib_logfile0
seafile-mysql | 2020-09-03 7:40:49 3069322456 [Warning] InnoDB: New log files created, LSN=45781
seafile-mysql | 2020-09-03 7:40:49 3069322456 [Note] InnoDB: Doublewrite buffer not found: creating new
seafile | *** Booting runit daemon...
seafile | *** Runit started as PID 16
seafile | *** Running /scripts/start.py...
seafile-mysql | 2020-09-03 7:40:49 3069322456 [Note] InnoDB: Doublewrite buffer created
seafile-mysql | 2020-09-03 7:40:49 3069322456 [Note] InnoDB: 128 rollback segment(s) are active.
seafile-mysql | 2020-09-03 7:40:49 3069322456 [Warning] InnoDB: Creating foreign key constraint system tables.
seafile-mysql | 2020-09-03 7:40:49 3069322456 [Note] InnoDB: Foreign key constraint system tables created
seafile-mysql | 2020-09-03 7:40:49 3069322456 [Note] InnoDB: Creating tablespace and datafile system tables.
seafile-mysql | 2020-09-03 7:40:49 3069322456 [Note] InnoDB: Tablespace and datafile system tables created.
seafile-mysql | 2020-09-03 7:40:49 3069322456 [Note] InnoDB: Waiting for purge to start
seafile-mysql | 2020-09-03 7:40:49 3069322456 [Note] InnoDB: Percona XtraDB (http://www.percona.com) 5.6.44-86.0 started; log sequence number 0
seafile-mysql | 2020-09-03 7:40:50 2740170020 [Note] InnoDB: Dumping buffer pool(s) not yet started
seafile-mysql | 2020-09-03 7:40:50 2739981604 [Warning] Failed to load slave replication state from table mysql.gtid_slave_pos: 1146: Table 'mysql.gtid_slave_pos' doesn't exist
seafile | Cloning into '/shared/ssl/letsencrypt'...
seafile-mysql | 2020-09-03 7:40:53 3069220056 [Note] /usr/bin/mysqld (mysqld 10.1.41-MariaDB) starting as process 109 ...
seafile-mysql | 2020-09-03 7:40:53 3069220056 [Note] InnoDB: innodb_empty_free_list_algorithm has been changed to legacy because of small buffer pool size. In order to use backoff, increase buffer pool at least up to 20MB.
seafile-mysql |
seafile-mysql | 2020-09-03 7:40:53 3069220056 [Note] InnoDB: Using mutexes to ref count buffer pool pages
seafile-mysql | 2020-09-03 7:40:53 3069220056 [Note] InnoDB: The InnoDB memory heap is disabled
seafile-mysql | 2020-09-03 7:40:53 3069220056 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
seafile-mysql | 2020-09-03 7:40:53 3069220056 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
seafile-mysql | 2020-09-03 7:40:53 3069220056 [Note] InnoDB: Compressed tables use zlib 1.2.11
seafile-mysql | 2020-09-03 7:40:53 3069220056 [Note] InnoDB: Using Linux native AIO
seafile-mysql | 2020-09-03 7:40:53 3069220056 [Note] InnoDB: Using generic crc32 instructions
seafile-mysql | 2020-09-03 7:40:53 3069220056 [Note] InnoDB: Initializing buffer pool, size = 128.0M
seafile-mysql | 2020-09-03 7:40:53 3069220056 [Note] InnoDB: Completed initialization of buffer pool
seafile-mysql | 2020-09-03 7:40:53 3069220056 [Note] InnoDB: Highest supported file format is Barracuda.
seafile-mysql | 2020-09-03 7:40:53 3069220056 [Note] InnoDB: 128 rollback segment(s) are active.
seafile-mysql | 2020-09-03 7:40:53 3069220056 [Note] InnoDB: Waiting for purge to start
seafile-mysql | 2020-09-03 7:40:54 3069220056 [Note] InnoDB: Percona XtraDB (http://www.percona.com) 5.6.44-86.0 started; log sequence number 1616697
seafile-mysql | 2020-09-03 7:40:54 2745953572 [Note] InnoDB: Dumping buffer pool(s) not yet started
seafile | Generating RSA private key, 4096 bit long modulus (2 primes)
seafile-mysql | 2020-09-03 7:40:56 3069478104 [Note] /usr/bin/mysqld (mysqld 10.1.41-MariaDB) starting as process 139 ...
seafile-mysql | 2020-09-03 7:40:56 3069478104 [Note] InnoDB: innodb_empty_free_list_algorithm has been changed to legacy because of small buffer pool size. In order to use backoff, increase buffer pool at least up to 20MB.
seafile-mysql |
seafile-mysql | 2020-09-03 7:40:56 3069478104 [Note] InnoDB: Using mutexes to ref count buffer pool pages
seafile-mysql | 2020-09-03 7:40:56 3069478104 [Note] InnoDB: The InnoDB memory heap is disabled
seafile-mysql | 2020-09-03 7:40:56 3069478104 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
seafile-mysql | 2020-09-03 7:40:56 3069478104 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
seafile-mysql | 2020-09-03 7:40:56 3069478104 [Note] InnoDB: Compressed tables use zlib 1.2.11
seafile-mysql | 2020-09-03 7:40:56 3069478104 [Note] InnoDB: Using Linux native AIO
seafile-mysql | 2020-09-03 7:40:56 3069478104 [Note] InnoDB: Using generic crc32 instructions
seafile-mysql | 2020-09-03 7:40:56 3069478104 [Note] InnoDB: Initializing buffer pool, size = 128.0M
seafile-mysql | 2020-09-03 7:40:56 3069478104 [Note] InnoDB: Completed initialization of buffer pool
seafile-mysql | 2020-09-03 7:40:57 3069478104 [Note] InnoDB: Highest supported file format is Barracuda.
seafile-mysql | 2020-09-03 7:40:57 3069478104 [Note] InnoDB: 128 rollback segment(s) are active.
seafile-mysql | 2020-09-03 7:40:57 3069478104 [Note] InnoDB: Waiting for purge to start
seafile-mysql | 2020-09-03 7:40:57 3069478104 [Note] InnoDB: Percona XtraDB (http://www.percona.com) 5.6.44-86.0 started; log sequence number 1616707
seafile-mysql | 2020-09-03 7:40:57 2746211620 [Note] InnoDB: Dumping buffer pool(s) not yet started
seafile | ....................................................................................++++
seafile-mysql |
seafile-mysql | PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !
seafile-mysql | To do so, start the server, then issue the following commands:
seafile-mysql |
seafile-mysql | '/usr/bin/mysqladmin' -u root password 'new-password'
seafile-mysql | '/usr/bin/mysqladmin' -u root -h password 'new-password'
seafile-mysql |
seafile-mysql | Alternatively you can run:
seafile-mysql | '/usr/bin/mysql_secure_installation'
seafile-mysql |
seafile-mysql | which will also give you the option of removing the test
seafile-mysql | databases and anonymous user created by default. This is
seafile-mysql | strongly recommended for production servers.
seafile-mysql |
seafile-mysql | See the MariaDB Knowledgebase at http://mariadb.com/kb or the
seafile-mysql | MySQL manual for more instructions.
seafile-mysql |
seafile-mysql | Please report any problems at http://mariadb.org/jira
seafile-mysql |
seafile-mysql | The latest information about MariaDB is available at http://mariadb.org/.
seafile-mysql | You can find additional information about the MySQL part at:
seafile-mysql | http://dev.mysql.com
seafile-mysql | Consider joining MariaDB's strong and vibrant community:
seafile-mysql | https://mariadb.org/get-involved/
seafile-mysql |
seafile-mysql | 2020-09-03T07:40:59+0000 [Note] [Entrypoint]: Database files initialized
seafile-mysql | 2020-09-03T07:40:59+0000 [Note] [Entrypoint]: Starting temporary server
seafile-mysql | 2020-09-03T07:40:59+0000 [Note] [Entrypoint]: Waiting for server startup
seafile-mysql | 2020-09-03 7:40:59 3069203672 [Note] mysqld (mysqld 10.1.41-MariaDB) starting as process 169 ...
seafile-mysql | 2020-09-03 7:41:00 3069203672 [Note] InnoDB: innodb_empty_free_list_algorithm has been changed to legacy because of small buffer pool size. In order to use backoff, increase buffer pool at least up to 20MB.
seafile-mysql |
seafile-mysql | 2020-09-03 7:41:00 3069203672 [Note] InnoDB: Using mutexes to ref count buffer pool pages
seafile-mysql | 2020-09-03 7:41:00 3069203672 [Note] InnoDB: The InnoDB memory heap is disabled
seafile-mysql | 2020-09-03 7:41:00 3069203672 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
seafile-mysql | 2020-09-03 7:41:00 3069203672 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
seafile-mysql | 2020-09-03 7:41:00 3069203672 [Note] InnoDB: Compressed tables use zlib 1.2.11
seafile-mysql | 2020-09-03 7:41:00 3069203672 [Note] InnoDB: Using Linux native AIO
seafile-mysql | 2020-09-03 7:41:00 3069203672 [Note] InnoDB: Using generic crc32 instructions
seafile-mysql | 2020-09-03 7:41:00 3069203672 [Note] InnoDB: Initializing buffer pool, size = 128.0M
seafile-mysql | 2020-09-03 7:41:00 3069203672 [Note] InnoDB: Completed initialization of buffer pool
seafile-mysql | 2020-09-03 7:41:00 3069203672 [Note] InnoDB: Highest supported file format is Barracuda.
seafile-mysql | 2020-09-03 7:41:00 3069203672 [Note] InnoDB: 128 rollback segment(s) are active.
seafile-mysql | 2020-09-03 7:41:00 3069203672 [Note] InnoDB: Waiting for purge to start
seafile-mysql | 2020-09-03 7:41:00 3069203672 [Note] InnoDB: Percona XtraDB (http://www.percona.com) 5.6.44-86.0 started; log sequence number 1616717
seafile-mysql | 2020-09-03 7:41:00 2745937188 [Note] InnoDB: Dumping buffer pool(s) not yet started
seafile-mysql | 2020-09-03 7:41:00 3069203672 [Note] Plugin 'FEEDBACK' is disabled.
seafile-mysql | 2020-09-03 7:41:00 3069203672 [Warning] 'user' entry 'root@cbac7b27cbad' ignored in --skip-name-resolve mode.
seafile-mysql | 2020-09-03 7:41:00 3069203672 [Warning] 'user' entry '@cbac7b27cbad' ignored in --skip-name-resolve mode.
seafile-mysql | 2020-09-03 7:41:00 3069203672 [Warning] 'proxies_priv' entry '@% root@cbac7b27cbad' ignored in --skip-name-resolve mode.
seafile-mysql | 2020-09-03 7:41:00 3069203672 [Note] mysqld: ready for connections.
seafile-mysql | Version: '10.1.41-MariaDB' socket: '/run/mysqld/mysqld.sock' port: 0 MariaDB Server
seafile-mysql | 2020-09-03T07:41:01+0000 [Note] [Entrypoint]: Temporary server started.
seafile | ..................................................................................++++
seafile | e is 65537 (0x010001)
seafile | Generating RSA private key, 4096 bit long modulus (2 primes)
seafile-mysql | 2020-09-03 7:41:04 2744790308 [Warning] 'proxies_priv' entry '@% root@cbac7b27cbad' ignored in --skip-name-resolve mode.
seafile-mysql |
seafile-mysql | 2020-09-03T07:41:04+0000 [Note] [Entrypoint]: Stopping temporary server
seafile-mysql | 2020-09-03 7:41:04 2744790308 [Note] mysqld: Normal shutdown
seafile-mysql | 2020-09-03 7:41:04 2744790308 [Note] Event Scheduler: Purging the queue. 0 events
seafile-mysql | 2020-09-03 7:41:05 2746314020 [Note] InnoDB: FTS optimize thread exiting.
seafile-mysql | 2020-09-03 7:41:05 2744790308 [Note] InnoDB: Starting shutdown...
seafile-mysql | 2020-09-03 7:41:05 2744790308 [Note] InnoDB: Waiting for page_cleaner to finish flushing of buffer pool
seafile-mysql | 2020-09-03 7:41:06 2744790308 [Note] InnoDB: Shutdown completed; log sequence number 1616727
seafile-mysql | 2020-09-03 7:41:06 2744790308 [Note] mysqld: Shutdown complete
seafile-mysql |
seafile-mysql | 2020-09-03T07:41:06+0000 [Note] [Entrypoint]: Temporary server stopped
seafile-mysql |
seafile-mysql | 2020-09-03T07:41:06+0000 [Note] [Entrypoint]: MySQL init process done. Ready for start up.
seafile-mysql |
seafile-mysql | 2020-09-03 7:41:06 3069768920 [Note] mysqld (mysqld 10.1.41-MariaDB) starting as process 1 ...
seafile-mysql | 2020-09-03 7:41:07 3069768920 [Note] InnoDB: innodb_empty_free_list_algorithm has been changed to legacy because of small buffer pool size. In order to use backoff, increase buffer pool at least up to 20MB.
seafile-mysql |
seafile-mysql | 2020-09-03 7:41:07 3069768920 [Note] InnoDB: Using mutexes to ref count buffer pool pages
seafile-mysql | 2020-09-03 7:41:07 3069768920 [Note] InnoDB: The InnoDB memory heap is disabled
seafile-mysql | 2020-09-03 7:41:07 3069768920 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
seafile-mysql | 2020-09-03 7:41:07 3069768920 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
seafile-mysql | 2020-09-03 7:41:07 3069768920 [Note] InnoDB: Compressed tables use zlib 1.2.11
seafile-mysql | 2020-09-03 7:41:07 3069768920 [Note] InnoDB: Using Linux native AIO
seafile-mysql | 2020-09-03 7:41:07 3069768920 [Note] InnoDB: Using generic crc32 instructions
seafile-mysql | 2020-09-03 7:41:07 3069768920 [Note] InnoDB: Initializing buffer pool, size = 128.0M
seafile-mysql | 2020-09-03 7:41:07 3069768920 [Note] InnoDB: Completed initialization of buffer pool
seafile-mysql | 2020-09-03 7:41:07 3069768920 [Note] InnoDB: Highest supported file format is Barracuda.
seafile-mysql | 2020-09-03 7:41:07 3069768920 [Note] InnoDB: 128 rollback segment(s) are active.
seafile-mysql | 2020-09-03 7:41:07 3069768920 [Note] InnoDB: Waiting for purge to start
seafile-mysql | 2020-09-03 7:41:07 3069768920 [Note] InnoDB: Percona XtraDB (http://www.percona.com) 5.6.44-86.0 started; log sequence number 1616727
seafile-mysql | 2020-09-03 7:41:07 2746502436 [Note] InnoDB: Dumping buffer pool(s) not yet started
seafile-mysql | 2020-09-03 7:41:07 3069768920 [Note] Plugin 'FEEDBACK' is disabled.
seafile-mysql | 2020-09-03 7:41:07 3069768920 [Note] Server socket created on IP: '::'.
seafile-mysql | 2020-09-03 7:41:07 3069768920 [Warning] 'proxies_priv' entry '@% root@cbac7b27cbad' ignored in --skip-name-resolve mode.
seafile-mysql | 2020-09-03 7:41:07 3069768920 [Note] mysqld: ready for connections.
seafile-mysql | Version: '10.1.41-MariaDB' socket: '/run/mysqld/mysqld.sock' port: 3306 MariaDB Server
seafile | .......................................................................................................................++++
seafile | ..........................................................................................................................................................................................................................................................................................................................................................................................................++++
seafile | e is 65537 (0x010001)
seafile | Can't load ./.rnd into RNG
seafile | 3069345808:error:2406F079:random number generator:RAND_load_file:Cannot open file:../crypto/rand/randfile.c:88:Filename=./.rnd
seafile | Parsing account key...
seafile | Parsing CSR...
seafile | Found domains: sync.MYDOMAIN
seafile | Getting directory...
seafile | Directory found!
seafile | Registering account...
seafile | Registered!
seafile | Creating new order...
seafile | Order created!
seafile | Verifying sync.MYDOMAIN...
seafile | sync.MYDOMAIN verified!
seafile | Signing certificate...
seafile | Certificate signed!
seafile | Nginx reloaded.
seafile | Created a crontab to auto renew the cert for letsencrypt.
seafile | Checking python on this machine ...
seafile |
seafile | done
seafile | Successly create configuration dir /opt/seafile/ccnet.
seafile | Done.
seafile |
seafile | verifying password of user root ... done
seafile |
seafile | ---------------------------------
seafile | This is your configuration
seafile | ---------------------------------
seafile |
seafile | server name: seafile
seafile | server ip/domain: sync.MYDOMAIN
seafile |
seafile | seafile data dir: /opt/seafile/seafile-data
seafile | fileserver port: 8082
seafile |
seafile | database: create new
seafile | ccnet database: ccnet_db
seafile | seafile database: seafile_db
seafile | seahub database: seahub_db
seafile | database user: seafile
seafile |
seafile |
seafile | Generating ccnet configuration ...
seafile |
seafile | Generating seafile configuration ...
seafile |
seafile | done
seafile | Generating seahub configuration ...
seafile |
seafile | ----------------------------------------
seafile | Now creating ccnet database tables ...
seafile |
seafile | ----------------------------------------
seafile | ----------------------------------------
seafile | Now creating seafile database tables ...
seafile |
seafile | ----------------------------------------
seafile | ----------------------------------------
seafile | Now creating seahub database tables ...
seafile |
seafile | ----------------------------------------
seafile |
seafile | creating seafile-server-latest symbolic link ... done
seafile |
seafile |
seafile |
seafile |
seafile | -----------------------------------------------------------------
seafile | Your seafile server configuration has been finished successfully.
seafile | -----------------------------------------------------------------
seafile |
seafile | run seafile server: ./seafile.sh { start | stop | restart }
seafile | run seahub server: ./seahub.sh { start <port> | stop | restart <port> }
seafile |
seafile | -----------------------------------------------------------------
seafile | If you are behind a firewall, remember to allow input/output of these tcp ports:
seafile | -----------------------------------------------------------------
seafile |
seafile | port of seafile fileserver: 8082
seafile | port of seahub: 8000
seafile |
seafile | When problems occur, Refer to
seafile |
seafile | https://download.seafile.com/published/seafile-manual/home.md
seafile |
seafile | for information.
seafile |
seafile |
seafile | [09/03/2020 09:42:00][upgrade]: The container was recreated, running minor-upgrade.sh to fix the media symlinks
seafile | [09/03/2020 09:42:00][upgrade]: Running script /opt/seafile/seafile-server-7.1.4/upgrade/minor-upgrade.sh
seafile |
seafile | -------------------------------------------------------------
seafile | This script would do the minor upgrade for you.
seafile | Press [ENTER] to contiune
seafile | -------------------------------------------------------------
seafile |
seafile |
seafile | renaming the gunicorn.conf to gunicorn.conf.py ...
seafile |
seafile | Done
seafile |
seafile | ------------------------------
seafile | migrating avatars ...
seafile |
seafile |
seafile | DONE
seafile | ------------------------------
seafile |
seafile |
seafile | Moving the elasticsearch's configuration file ...
seafile |
seafile |
seafile | updating seafile-server-latest symbolic link to /opt/seafile/seafile-server-7.1.4 ...
seafile |
seafile | DONE
seafile | ------------------------------
seafile |
seafile |
seafile | [09/03/20 09:42:00] ../common/session.c(148): using config file /opt/seafile/conf/ccnet.conf
seafile | Starting seafile server, please wait ...
seafile | ** Message: 09:42:00.487: seafile-controller.c(541): No seafevents.
seafile |
seafile | Seafile server started
seafile |
seafile | Done.
seafile |
seafile | Starting seahub at port 8000 ...
seafile |
seafile |
seafile |
seafile | ----------------------------------------
seafile | Successfully created seafile admin
seafile | ----------------------------------------
seafile |
seafile |
seafile |
seafile |
seafile | Seahub is started
seafile |
seafile | Done.
seafile |
seafile |
seafile | Starting seaf-fuse, please wait ...
seafile | fuse: device not found, try 'modprobe fuse' first
seafile | [2020-09-03 09:40:50] Preparing for letsencrypt ...
seafile | [2020-09-03 09:40:51] Starting letsencrypt verification
seafile | [2020-09-03 09:41:46] Now running setup-seafile-mysql.py in auto mode.
seafile | [2020-09-03 09:42:00] Updating version stamp
seafile | Failed to start seaf-fuse
seafile | seafile server is running now.
seafile | seaf-fuse is running now.
seafile | Traceback (most recent call last):
seafile | File "/scripts/start.py", line 92, in <module>
seafile | main()
seafile | File "/scripts/start.py", line 80, in main
seafile | call('{} start -o allow_other /fuse'.format(get_script('seaf-fuse.sh')))
seafile | File "/scripts/utils/__init__.py", line 70, in call
seafile | return subprocess.check_call(*a, **kw)
seafile | File "/usr/lib/python3.6/subprocess.py", line 311, in check_call
seafile | raise CalledProcessError(retcode, cmd)
seafile | subprocess.CalledProcessError: Command '/opt/seafile/seafile-server-7.1.4/seaf-fuse.sh start -o allow_other /fuse' returned non-zero exit status 1.
seafile | *** /scripts/start.py exited with status 1.
seafile | *** Shutting down runit daemon (PID 16)...
seafile | *** Running /etc/my_init.post_shutdown.d/10_syslog-ng.shutdown...
seafile | *** Killing all processes...
seafile exited with code 1
^CGracefully stopping... (press Ctrl+C again to force)
Stopping seafile-mysql ... done
Stopping seafile-memcached ... done
guillaume@box /o/seafile> dkc down
Removing seafile ... done
Removing seafile-mysql ... done
Removing seafile-memcached ... done
Removing network seafile_seafile-net