Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version="7.8.0" # The version of your mattermost instance
- wget https://releases.mattermost.com/$version/mattermost-$version-linux-amd64.tar.gz
- gunzip mattermost-$version-linux-amd64.tar.gz
- tar xvf mattermost-$version-linux-amd64.tar
- mv mattermost/* .
- rm -r mattermost*
- chmod -R 777 .
- # Configure mattermost in config/config.json
- # Tip: Use my scipt for MariaDB (https://pastebin.com/CxsPHAE7)
- Go to "SqlSettings", and edit the value of "DataSource" to following:
- "username:password@tcp(host:3306)/database?charset=utf8mb4,utf8\u0026writeTimeout=30s" # Adjust "Username, "Password, "Host" and "Database
- # Start mattermost
- bin/mattermost
- ## Or inbackgound
- screen -S Mattermost bin/mattermost
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement