Disconnected - Something happened to Gekko or ... - Printable Version +- Gekko Forum (https://forum.gekko.wizb.it) +-- Forum: Gekko (https://forum.gekko.wizb.it/forum-13.html) +--- Forum: Technical Support (https://forum.gekko.wizb.it/forum-19.html) +--- Thread: Disconnected - Something happened to Gekko or ... (/thread-56967.html) |
Disconnected - Something happened to Gekko or ... - dgs2001 - 04-27-2018 Hi All, Hoping somebody can help me with a networking issue. I have Gekko working on an Amazon Ubuntu Instance. I am able to use winSCP to browse the virtual server so I know its all running ok. I am able to use Amazon AWS Powershell from windows to access the amazon ubuntu instance. Once connected to Amazon AWS in powershell I am able to run this command Code: ssh -i C:\Users\User_Name\.ssh\AWS.pem -L3000:localhost:3000 ubuntu@18.my.ip.here which was taken from - https://github.com/askmike/gekko/issues/1896 The result of this is that Gekko appears to start and run in the powershell window yay Gekko reports Code: Serving Gekko UI on https://18.my.ip.here:3000/ Now comes the problem - If I open a browser window with localhost:3000 the Gekko Background appears but instantly changes to "Disconnected" This is now driving me nuts, is anybody able to give me a pointer as to whether this is likely to be a setting on my pc? and how do i find out what is causing the disconnection... Do I need to use the nginx setup? This is my config - Code: // This config is used in both the RE: Disconnected - Something happened to Gekko or ... - dgs2001 - 04-27-2018 Hmm, This is deffo a security thing between ssh and AWS. If I set ssl = 'false' I can access the gekko on its ip address and it runs well, but of course this is exposing gekko to the internet When I set ssl to 'true' in the UIconfig then although Gekko is running and I can browse to the Gekko localhost page, I cannot see any activity in the ssh window. Im expecting to see some Get and Post, but nothing happens. Im getting there slowly....... RE: Disconnected - Something happened to Gekko or ... - dgs2001 - 04-27-2018 Ok All Sorted now, Had a battle with nginx and now have it working Yay If it helps anybody else the problem I had was two fold. Firstly I had not configured AWS ports properly, make sure that inbound HTTP traffic is allowed as well as SSH. Secondly when setting up nginx, you cannot execute this command "printf "username:`openssl passwd -apr1`\n" >> /etc/nginx/.htpasswd" without chmod the nginx directory to add write access. dont forget to change it back again. Thanks to AskMike for an excelent program. |