-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
plugin service exit unexpectedly #30
Comments
On another test server plugin working as expected but SSL has been installed from max-c-lv repository. |
|
Did you try to build GQ from source? There's some new patch since the last release out. |
@kimw I use binaries. Do I need to build it anyway? |
@hybtoy It's just a suggestion. Maybe it works, maybe not. Let's see it. BTW, build GQ from source code is easy to practice.
Now the GQ is built and stored in |
Here's the remove steps maybe is useful for you,
See it! It's easy. |
@kimw |
@cbeuw On another screen session I am starting ss with this config: And it is working |
After restart it began to work root@mail2you:/etc/shadowsocks-libev# service shadowsocks restart
Apr 04 15:56:14 mail2you /usr/local/bin/ss-server[1026]: plugin "/etc/shadowsocks-libev/gqserver" enabled If I will restart the service, plugin will not work. |
And as I noticed above: root@mail2you:/etc/shadowsocks-libev# service shadowsocks restart
Apr 04 15:56:14 mail2you /usr/local/bin/ss-server[1026]: plugin "/etc/shadowsocks-libev/gqserver" enabled
Apr 04 15:57:47 mail2you /usr/local/bin/ss-server[1067]: plugin "/etc/shadowsocks-libev/gqserver" enabled |
@hybtoy #include <stdio.h>
#include <stdlib.h>
int main(){
printf("SS_REMOTE_HOST %s\n", getenv("SS_REMOTE_HOST"));
printf("SS_REMOTE_PORT %s\n", getenv("SS_REMOTE_PORT"));
printf("SS_LOCAL_HOST %s\n", getenv("SS_LOCAL_HOST"));
printf("SS_LOCAL_PORT %s\n", getenv("SS_LOCAL_PORT"));
return 0;
} |
@cbeuw |
@hybtoy
|
@cbeuw
|
@hybtoy Please try the attached one, which should output like,
And then, you can check your configuration by the outputs. Something you may know is that this customized binary should not run in production. |
SS-libev version: 3.1.3
GQ server version: 1.1.2
TFO: false
I have added some additional commands to install GoQuiet with teddysun's autoinstall script but finally I don't understand why the GQ plugin is not working. Maybe I am doing something wrong.
Can somebody help on this matter, please?
Script: https://github.com/hybtoy/shadowsocks_install/blob/master/shadowsocks-libev-debian.sh
SSL config:
{
"server":${server_value},
"server_port":${shadowsocksport},
"local_address":"127.0.0.1",
"local_port":1080,
"method":"${shadowsockscipher}",
"password":"${password}",
"timeout":600,
"udp_timeout":600,
"mode":"tcp_and_udp",
"fast_open":false,
"no_delay":true,
"reuse_port":true,
"verbose":true,
"plugin":"/etc/shadowsocks-libev/gqserver",
"plugin_opts":"/etc/shadowsocks-libev/gqserver.json"
}
GQ server config:
{
"WebServerAddr":"${obfshost}:443",
"Key":"${password}",
"FastOpen":false,
}
Log:
`shadowsocks.service - LSB: Fast tunnel proxy that helps you bypass firewalls
Loaded: loaded (/etc/init.d/shadowsocks; bad; vendor preset: enabled)
Active: active (running) since Wed 2018-04-04 07:20:35 CEST; 2s ago
Docs: man:systemd-sysv-generator(8)
Process: 849 ExecStop=/etc/init.d/shadowsocks stop (code=exited, status=0/SUCCESS)
Process: 853 ExecStart=/etc/init.d/shadowsocks start (code=exited, status=0/SUCCESS)
CGroup: /system.slice/shadowsocks.service
-699 /etc/shadowsocks-libev/gqserver
Apr 04 07:20:35 mail2you /usr/local/bin/ss-server[855]: plugin "/etc/shadowsocks-libev/gqserver" enabled
Apr 04 07:20:35 mail2you /usr/local/bin/ss-server[855]: UDP relay enabled
Apr 04 07:20:35 mail2you /usr/local/bin/ss-server[855]: enable TCP no-delay
Apr 04 07:20:35 mail2you /usr/local/bin/ss-server[855]: initializing ciphers... aes-128-gcm
Apr 04 07:20:35 mail2you /usr/local/bin/ss-server[855]: tcp server listening at 127.0.0.1:57593
Apr 04 07:20:35 mail2you /usr/local/bin/ss-server[855]: tcp port reuse enabled
Apr 04 07:20:35 mail2you /usr/local/bin/ss-server[855]: udp server listening at 0.0.0.0:443
Apr 04 07:20:35 mail2you /usr/local/bin/ss-server[855]: udp port reuse enabled
Apr 04 07:20:35 mail2you /usr/local/bin/ss-server[855]: running from root user
Apr 04 07:20:35 mail2you /usr/local/bin/ss-server[855]: plugin service exit unexpectedly
`
The text was updated successfully, but these errors were encountered: