You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I found this awesome project, but when trying to run it on a CentOS 4 server where anything else have problems, it seems this binary also has issues. Is there any way that I can get this with no system dependencies:
./ssl-proxy -cert /usr/local/tomcat7/certs/xxxx.crt -key /usr/local/tomcat7/certs/xxxx.key -from 0.0.0.0:8443 -to 127.0.0.1:8080
2018/10/26 14:43:29 Assuming -to URL is using http://
2018/10/26 14:43:29 Proxying calls from https://0.0.0.0:8443 (SSL/TLS) to http://127.0.0.1:8080
2018/10/26 14:43:29 open /usr/local/tomcat7/certs/xxxx.crt: function not implemented
The text was updated successfully, but these errors were encountered:
titansmc
changed the title
open /usr/local/tomcat7/certs/xxxx.crt: function not implemented on CentOS4
open /usr/local/tomcat7/certs/xxxx.crt: function not implemented on CentOS 4
Oct 26, 2018
Hi @titansmc interesting issue...it appears at first glance that perhaps the open syscall is not implemented on your kernel (or rather, the golang open in the syscall.Syscall isn't working on CentOS for some reason)? Can you run uname -r and reply with the output?
Are you using the latest pre-built binary from the releases tab (0.2.1) or are you building your own? Are you running as root (probably should not be necessary, but am curious)?
I'll see if I can spin up a CentOS machine sometime in the next week to repro and dig deeper into what's going on here.
Hi, I found this awesome project, but when trying to run it on a CentOS 4 server where anything else have problems, it seems this binary also has issues. Is there any way that I can get this with no system dependencies:
The text was updated successfully, but these errors were encountered: