Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content

Mattermost

60 Topics 643 Posts
  • Mattermost - Package Updates

    Pinned Locked
    202
    0 Votes
    202 Posts
    170k Views
    Package UpdatesP
    [1.27.1] Update mattermost to 11.6.1 Full Changelog Mattermost Platform Release 11.6.1 contains medium to high severity level security fixes.
  • Migrating from org.mattermost.cloudronapp to org.mattermost.cloudronapp2

    2
    2 Votes
    2 Posts
    59 Views
    J
    The original mattermost is not being maintained. MySQL support was completely dropped form mattermost a while ago. Please see https://forum.cloudron.io/topic/14416/mattermost-11-drops-mysql-support
  • How to clean up old media uploads from Mattermost?

    Solved
    6
    0 Votes
    6 Posts
    5k Views
    C
    We tested it by adding this Cron: @monthly find /app/data/files/ -type f -name "*.mp4" -mtime +60 -delete The purpose was to remove all videos with the extension .mp4 that are older than 2 months. We have no idea if it's working or not. We can't see anything in the logs. If anyone know how to improve the Cron please let me know
  • Data Retention / File Management in Mattermost

    Moved Solved
    4
    1 Votes
    4 Posts
    372 Views
    J
    According to https://forum.mattermost.com/t/is-it-safe-to-delete-a-file-from-the-data-folder/15732 you can just delete the old files from the filesystem (but read that post about the warning/side effects).
  • Mattermost 11 drops MySQL support

    1
    4 Votes
    1 Posts
    303 Views
    No one has replied
  • 3 Votes
    8 Posts
    3k Views
    marcusquinnM
    @BrutalBirdie well said!
  • PSA regarding Mattermost v10+

    9
    2 Votes
    9 Posts
    2k Views
    BushidoB
    Thanks so much for your thoughtful and encouraging response – that really means a lot. I also really like how you framed Cloudron’s own way of being open – that made me smile and actually made me think a bit deeper about what "openness" means in different contexts. You’re right: sometimes we overlook the tools right in front of us. Glad we could rediscover Matrix together – and yes, Zulip has strong merits too. I appreciate your balanced view.
  • File upload failed

    22
    1 Votes
    22 Posts
    8k Views
    BrutalBirdieB
    You only need what in NFS is described when you use NFS: https://docs.cloudron.io/volumes/#nfs
  • Can't connect with android app.

    Solved
    5
    0 Votes
    5 Posts
    2k Views
    J
    @GluttonStone ah thanks, maybe there was an issue in the server+client version mismatch then.
  • Consider packaging v10.1.1 pre-release due to bug

    4
    1 Votes
    4 Posts
    1k Views
    C
    @nebulon Just popping back here to say this worked a charm, thanks!
  • calls plugin support

    Solved
    9
    1 Votes
    9 Posts
    4k Views
    J
    @Grienauer Is the calls port enabled? It's the location UI . Default port is 8443 . This should also be opened up in the firewall.
  • Error loading users with latest mm update

    Solved
    7
    1 Votes
    7 Posts
    3k Views
    A
    it worked, thanks @joseph !
  • Issue with Mattermost database column lastlogin

    Solved
    3
    1 Votes
    3 Posts
    446 Views
    jfrereJ
    @joseph fixed with the latest update. Thank you!
  • Mattermost suddenly stopped working

    3
    1 Votes
    3 Posts
    1k Views
    J
    @wnstfy What is mm package version? Maybe your bug is also solved with https://forum.cloudron.io/topic/12611/error-loading-users-with-latest-mm-update
  • Migration To PostgreSQL - error 42601

    21
    1 Votes
    21 Posts
    6k Views
    BrutalBirdieB
    @vadim thank you very much
  • Online/offline status indicator in the Mac App broken

    3
    1 Votes
    3 Posts
    1k Views
    S
    Thanks for the tip, I have entered it there: https://forum.mattermost.com/t/online-offline-status-indicator-in-the-mac-app-broken/19481/3
  • Mattermost import - boards broken

    Solved
    16
    1
    0 Votes
    16 Posts
    5k Views
    girishG
    @djxx oh wow, thanks for the detailed write up! Hopefully it's useful for other people migrating as well. I will add a link to your report from our docs.
  • Migration To PostgreSQL Failed

    3
    0 Votes
    3 Posts
    1k Views
    J
    Connect to postgres like this (replace the variables below with the ones you put in pgloader): export PGPASSWORD=${CLOUDRON_POSTGRESQL_PASSWORD} psql -h ${CLOUDRON_POSTGRESQL_HOST} -p ${CLOUDRON_POSTGRESQL_PORT} -U ${CLOUDRON_POSTGRESQL_USERNAME} -d ${CLOUDRON_POSTGRESQL_DATABASE}
  • Mattermost v8.0+ and PostgreSQL

    41
    0 Votes
    41 Posts
    17k Views
    C
    @Lanhild Sorry missed your message. I will see if I can do another test migration this afternoon (CEST) and take some more notes. But basically I wrote the steps below on a clean Mattermost PostgreSQL install: Dumped the DB with : pg_dump -d mattermost > mattermost.dump Renamed on cloudron config.json to config.json.orig Copied mattermost.dump and config.json to cloudron mattermost via the file manager Edited config.json with the value from config.json.orig (to get the PostgreSQL details) "ServiceSettings" => "SiteURL" "SqlSettings" => "DataSource" and "DataSourceReplicas" "FileSettings" => "Directory" From the terminal app did PASSWORD=${CLOUDRON_POSTGRESQL_PASSWORD} pg_restore -h ${CLOUDRON_POSTGRESQL_HOST} -p ${CLOUDRON_POSTGRESQL_PORT} -U ${CLOUDRON_POSTGRESQL_USERNAME} -d ${CLOUDRON_POSTGRESQL_DATABASE} ../data/mattermost.dump Rsynced all my attachments from origin_server to cloudron_server:app_folder (cf girish post ) Restarted the app
  • Exporting All Data (TEams etc) to New App INstance

    upgrade version 8 export import
    3
    1 Votes
    3 Posts
    1k Views
    girishG
    You can run the CLI tool on Cloudron like https://docs.cloudron.io/apps/mattermost/#command-line-tool . Instead of the import command at https://docs.cloudron.io/apps/mattermost/#migration , use the export command. To get a file off Cloudron, easiest way is to export to a path under /app/data and then use the File manager to download it. I am also curious why you are not able to update mattermost on Cloudron. It's all automatic.