Change port external database #618
-
how to change port external database? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
What database are you using? You can find some info on both PostgreSQL and MariaDB here:
For mariadb, you'd want However, when I looked further, it doesn't look like port is included here: helm/charts/nextcloud/values.yaml Lines 354 to 382 in 0565cdb it's also not included here: I think we need to update the chart as this should be configurable 🤔 I opened #632 to explore this further. |
Beta Was this translation helpful? Give feedback.
-
Looks like you can just specify the port in the dbhost field in config.php, as mentioned in #632 (comment), so say your custom port is externalDatabase:
host: "myhostname.com:1234" We'll look into updating our docs to reflect that as soon as we can :) (here's the merged PR for more doc: #634 now available in |
Beta Was this translation helpful? Give feedback.
Looks like you can just specify the port in the dbhost field in config.php, as mentioned in #632 (comment), so say your custom port is
1234
, you'd do that in values.yaml like this:We'll look into updating our docs to reflect that as soon as we can :) (here's the merged PR for more doc: #634 now available in
6.0.2
)