On 30 August 2016 at 00:54, Mike Wilson <[email protected]> wrote: > * there is no argument in a "process command line" in said production.log. >
This is referring to the process list from the command line of your server - "ps axf|grep websock" is usually the way to go. This should give you some detail on hostnames and ports it's trying to use. Note that the websockify processes are *very* short lived when they fail, so you may want to run "watch -n1 'ps axf|grep websock' " or similar to get a live view of the process list and spot the data you need. Here's an example from my process list: [greg@topaz]$ ps ax|grep websock ~ 23002 ? S 0:00 /usr/bin/python /usr/share/foreman/extras/noVNC/websockify.py --daemon --idle-timeout=120 --timeout=120 5919 libvirt.domain:5901 --cert topaz.domain.pem --key topaz.pem This is a notoriously fiddly thing to debug - good luck :) Greg -- You received this message because you are subscribed to the Google Groups "Foreman users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/foreman-users. For more options, visit https://groups.google.com/d/optout.
