We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
CentOS 7
Firstly, I setup the file config.json in /etc/shadowsocks as following:
{ "server":"45.76.xxx.215", "server_port": 8388, "password":"your_password", "timeout": 300, "method": "aes-256-gcm", "fast_open": true }
Secondly, I setup the file shadowsocks.service in /etc/systemd/system as following:
[Unit] Description=Shadowsocks proxy server [Service] User=root Group=root Type=simple ExecStart=/usr/local/bin/ss-server -c /etc/shadowsocks/shadowsocks.json -a shadowsocks -v start [Install] WantedBy=multi-user.target
Finally, I run the following commands
chmod 755 /etc/systemd/system/shadowsocks.service systemctl daemon-reload systemctl enable shadowsocks.service
and then I get "Failed to execute operation: Invalid argument".
The result of the command
systemctl status shadowsocks.service
is the following
● shadowsocks.service - Shadowsocks proxy server Loaded: loaded (/etc/systemd/system/shadowsocks.service; disabled; vendor preset: disabled) Active: active (running) since Sun 2023-07-09 17:02:20 UTC; 1h 44min ago Main PID: 14984 (ss-server) CGroup: /system.slice/shadowsocks.service └─14984 /usr/local/bin/ss-server -c /etc/shadowsocks/shadowsocks.j...
I expect it could be successfully enabled.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Operating System
CentOS 7
What did I do
Firstly, I setup the file config.json in /etc/shadowsocks as following:
Secondly, I setup the file shadowsocks.service in /etc/systemd/system as following:
Finally, I run the following commands
and then I get "Failed to execute operation: Invalid argument".
Status of the file shadowsocks.service
The result of the command
is the following
What did I expect to see
I expect it could be successfully enabled.
The text was updated successfully, but these errors were encountered: