Hi - I’m new to the forum here - but using mattermost since some time on a very basic way. Just basic setup.
MY mattermost server is running on Ubuntu Linux 20.04.6 with mattermost 10.4.3 and database based on postgres (12.22) in the Mattermost Enterprise Edition with no license.
I just upgarded the system to this version. System is working as before - upgrade path is simple and nice - THX
Already since some time I’m getting the WebSocket meaasse as “Please check connection, Mattermost unreachable. If issue persists, ask administrator to check WebSocket port”. I followed already many post here and in the internet who faced the “same message”.
I tried to drill it down to a minium of complexity - but will need help to probably understand the basics better.
The client and the server are in the same network - with now firewall in between or a firewall on the Ubuntu server. So all plain.
I noticed from an other popst, that the WebSocket URL has to be set manualy in the file “config.json” - and it should be the same as the “site-url” (please see below):
In an other post I noticed something about “Cors” setting - even if I don’t understand for what it is, but I added here as well the “site-url” as well (see below):
I have to look for it later, but I think the Websocket URL I configured is without any protocol (ws:// or wss://). The docs ( Environment configuration settings - Mattermost documentation ) don’t really tell the necessary format for this config option..
Quick update on the Apache2 front. HTTP is now working fine within the local network - no WebSocket errors - but https is still a challenge (for tomorrow).
Lattest Mattermost config settings:
Sometimes it is the last change that makes the difference - https is now also working within the local network (Proxy-settings and Mattermost server on the same system)
<VirtualHost *:443>
# If you're not using a subdomain you may need to set a ServerAlias to:
# ServerAlias www.mydomain.com
ServerName vmmm-rd1.privat-net.intranet
ServerAdmin webmaster@localhost
# DocumentRoot /var/www/vmmm-rd1.privat-net.intranet-ssl
# SSL Section
SSLEngine on
SSLCertificateFile /etc/ssl/certs/vmmm-rd1.privat-net.intranet-self.crt
SSLCertificateKeyFile /etc/ssl/private/vmmm-rd1.privat-net.intranet-self.key
# Set web sockets
RewriteEngine On
RewriteCond %{REQUEST_URI} /api/v[0-9]+/(users/)?websocket [NC]
RewriteCond %{HTTP:UPGRADE} ^WebSocket$ [NC,OR]
RewriteCond %{HTTP:CONNECTION} ^Upgrade$ [NC]
RewriteRule .* ws://127.0.0.1:8065%{REQUEST_URI} [P,QSA,L]
<Location />
Require all granted
ProxyPass http://127.0.0.1:8065/
ProxyPassReverse http://127.0.0.1:8065/
ProxyPassReverseCookieDomain 127.0.0.1 vmmm-rd1.privat-net.intranet
</Location>
</VirtualHost>
I used the config file already in the past - but it looks like that the changes in the mattermost config fixed it now.
I will check tomorrow if I can get is working as well from the internet.
(FYI: vmmm-rd1.privat-net.intranet is the Mattermost server with the local proxy settings)
All OK but still the RED banner from WebSocket with the same error message:
May I have overseen it, but to see and to understand the relation between web-server settings, websockets and CORS is missing in you documentation - just my view.
Anyway - now the internal network and external network access is working without errors