- Joined
- Feb 22, 2019
- Messages
- 12
- Reaction score
- 5
I'm running 3cx in a VPS. After upgrading to v20 I'm unable to access the admin button of the webapp. All i see is an "apps" link in the bottom left.
I have SSH access, and the system seems to be working fine after the upgrade. I am also very familiar with pgsql and ave access to the database (read only for now).
We had IP restrictions in place to limit access in v18, I'm reading in some posts that that was a mistake, so I tried accessing the portal via an SSH tunnel to see if that made any difference (it didnt):
I did this by setting the server.my3cx.ca to 127.0.0.1 in my laptop's /etc/hosts file, and then started a tunnel with
.
I'm able to access the web portal that way, but still no admin button in the bottom left.
I'm wondering if I'm not the admin user, how do I tell who is (remember i have read only DB access)?
How do I turn off IP restrictions in the database? I can see that there is a table called public.balcklist that appears to contain whitelisted IP's so I could try adding IP;s to that, but I cant see a way to turn off IP whitelisting.
Maybe of note, the webapp is still running on https://server.my3cx.ca:5001/#/people, rather than the indicated port 443, here's the output of ss -plunt:
I have SSH access, and the system seems to be working fine after the upgrade. I am also very familiar with pgsql and ave access to the database (read only for now).
We had IP restrictions in place to limit access in v18, I'm reading in some posts that that was a mistake, so I tried accessing the portal via an SSH tunnel to see if that made any difference (it didnt):
I did this by setting the server.my3cx.ca to 127.0.0.1 in my laptop's /etc/hosts file, and then started a tunnel with
Code:
ssh -L 5001:localhost:5001 [email protected]
I'm able to access the web portal that way, but still no admin button in the bottom left.
I'm wondering if I'm not the admin user, how do I tell who is (remember i have read only DB access)?
How do I turn off IP restrictions in the database? I can see that there is a table called public.balcklist that appears to contain whitelisted IP's so I could try adding IP;s to that, but I cant see a way to turn off IP whitelisting.
Maybe of note, the webapp is still running on https://server.my3cx.ca:5001/#/people, rather than the indicated port 443, here's the output of ss -plunt:
Code:
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
udp UNCONN 0 0 0.0.0.0:5060 0.0.0.0:*
udp UNCONN 0 0 127.0.0.1:5063 0.0.0.0:*
udp UNCONN 0 0 127.0.0.1:5080 0.0.0.0:*
udp UNCONN 0 0 127.0.0.1:5483 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:38525 0.0.0.0:*
udp UNCONN 0 0 [::]:5060 [::]:*
udp UNCONN 0 0 *:5090 *:*
tcp LISTEN 0 128 0.0.0.0:22 0.0.0.0:*
tcp LISTEN 0 512 127.0.0.1:5004 0.0.0.0:*
tcp LISTEN 0 512 127.0.0.1:5008 0.0.0.0:*
tcp LISTEN 0 244 127.0.0.1:5432 0.0.0.0:*
tcp LISTEN 0 20 127.0.0.1:25 0.0.0.0:*
tcp LISTEN 0 511 0.0.0.0:5000 0.0.0.0:*
tcp LISTEN 0 511 0.0.0.0:5001 0.0.0.0:*
tcp LISTEN 0 5 127.0.0.1:5485 0.0.0.0:*
tcp LISTEN 0 5 127.0.0.1:5484 0.0.0.0:*
tcp LISTEN 0 5 127.0.0.1:5482 0.0.0.0:*
tcp LISTEN 0 64 0.0.0.0:5060 0.0.0.0:*
tcp LISTEN 0 64 0.0.0.0:5061 0.0.0.0:*
tcp LISTEN 0 20 [::1]:25 [::]:*
tcp LISTEN 0 128 [::]:22 [::]:*
tcp LISTEN 0 244 [::1]:5432 [::]:*
tcp LISTEN 0 512 [::1]:5008 [::]:*
tcp LISTEN 0 511 [::]:5000 [::]:*
tcp LISTEN 0 511 [::]:5001 [::]:*
tcp LISTEN 0 200 *:5090 *:*
tcp LISTEN 0 64 [::]:5060 [::]:*
tcp LISTEN 0 64 [::]:5061 [::]:*


