Hey everyone , I’ve decided to try out Pydio Cells and have bumped into an issue. It seems that the server cannot find any of my datasources, even though I only have the default ones.
I am running this server along side a MySQL database with docker-compose. Here is the yaml file:
version: "3"
services:
pydio-cells:
image: pydio/cells:latest
container_name: pydio-cells
hostname: pydio-cells
environment:
- PUID=1000
- PGID=1000
- TZ=America/New_York
- CELLS_BIND=0.0.0.0:5011
- CELLS_EXTERNAL=https://subdomain.domain.tld
volumes:
- ./pydio/:/var/cells/
ports:
- 5011:5011 # HTTP
- 33060:33060 # gRPC
restart: unless-stopped
mysql:
image: mysql:5.7
command: [mysqld, --character-set-server=utf8mb4, --collation-server=utf8mb4_unicode_ci]
expose:
- 3306
environment:
- MYSQL_ROOT_PASSWORD=
- MYSQL_DATABASE=
- MYSQL_USER=
- MYSQL_PASSWORD=
volumes:
- ./mysql/:/var/lib/mysql/
restart: unless-stopped
volumes:
pydio: {}
mysql: {}
I get errors like these:
pydio-cells | 2020-11-06T02:28:54.865Z ERROR pydio.rest.share Rest Error 403 {"error": "{\"id\":\"undefined\",\"code\":403,\"detail\":\"Unknown data source\",\"status\":\"Forbidden\"}"}
pydio-cells | 2020-11-06T02:33:55.597Z ERROR Could not find DataSource pydiods1 {"currentSources": []}
pydio-cells | 2020-11-06T02:33:55.597Z ERROR pydio.rest.meta Cannot find DataSourceInfo for pydiods1 {"error": "Could not find DataSource pydiods1"}
pydio-cells | 2020-11-06T02:33:57.208Z ERROR Could not find DataSource personal {"currentSources": []}
pydio-cells | 2020-11-06T02:33:57.208Z ERROR pydio.rest.meta Cannot find DataSourceInfo for personal {"error": "Could not find DataSource personal"}
pydio-cells | 2020-11-06T02:33:57.208Z ERROR pydio.rest.meta Rest Error 404 {"error": "Could not find DataSource personal"}
pydio-cells | 2020-11-06T02:34:05.225Z ERROR Could not find DataSource personal {"currentSources": []}
Any help to resolve this issue would be greatly appreciated!