├── .gitignore ├── README.md ├── StarMap-CryptoTool.tar.gz ├── StarMapTools.zip └── install.sh /.gitignore: -------------------------------------------------------------------------------- 1 | # http://www.gnu.org/software/automake 2 | 3 | Makefile.in 4 | /ar-lib 5 | /mdate-sh 6 | /py-compile 7 | /test-driver 8 | /ylwrap 9 | 10 | # http://www.gnu.org/software/autoconf 11 | 12 | autom4te.cache 13 | /autoscan.log 14 | /autoscan-*.log 15 | /aclocal.m4 16 | /compile 17 | /config.guess 18 | /config.h.in 19 | /config.log 20 | /config.status 21 | /config.sub 22 | /configure 23 | /configure.scan 24 | /depcomp 25 | /install-sh 26 | /missing 27 | /stamp-h1 28 | 29 | # https://www.gnu.org/software/libtool/ 30 | 31 | /ltmain.sh 32 | 33 | # http://www.gnu.org/software/texinfo 34 | 35 | /texinfo.tex 36 | 37 | # http://www.gnu.org/software/m4/ 38 | 39 | m4/libtool.m4 40 | m4/ltoptions.m4 41 | m4/ltsugar.m4 42 | m4/ltversion.m4 43 | m4/lt~obsolete.m4 44 | 45 | # Generated Makefile 46 | # (meta build system like autotools, 47 | # can automatically generate from config.status script 48 | # (which is called by configure script)) 49 | Makefile 50 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ST-CryptoServer 2 | 3 | #### StarMap用户端下载地址 4 | ```shell 5 | https://github.com/C3Pool/ST-CryptoServer/releases/download/v1.0.5/StarMapTools.zip 6 | ``` 7 | 8 | #### 服务端安装流程 9 | 10 | #### 一键安装&启动 11 | 12 | ```shell 13 | wget -O install.sh https://raw.githubusercontent.com/C3Pool/ST-CryptoServer/main/install.sh && bash install.sh 14 | ``` 15 | 16 | #### 如已使用以上 一键安装&启动 则无需使用下方命令 17 | 18 | #### 启动命令 19 | 20 | ```shell 21 | chmod +x StarMap-CryptoTool 22 | nohup ./StarMap-CryptoTool -h 0.0.0.0 -p 18681 -s tcp.starmap.asia -b 43321 -c 8898 & 23 | ``` 24 | 25 | #### 其他命令 26 | 27 | ```shell 28 | ### 后台运行时查看 29 | tail -f nohup.out 30 | 31 | ### 后台运行时关闭 32 | killall StarMap-CryptoTool 33 | ``` 34 | 35 | 36 | 37 | ##### 参数解析: 38 | 39 | - -h: 绑定地址,允许所有访问 使用0.0.0.0(默认)。 40 | - -p: 本地监听端口(默认18681)。 41 | - -s: 远程矿池地址。 42 | - -b: 远程矿池端口。 43 | - -c: 网页监控端口(默认8898)。 44 | 45 | ##### 注意: 46 | 47 | - 本工具仅支持明文TCP连接矿池,暂不支持SSL连接。 48 | - 如连接失败,请检查服务器提供商控制台,是否已在安全组中开启对应端口 49 | - 工具暂未处理内核抽水连接 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /StarMap-CryptoTool.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C3Pool/ST-CryptoServer/cc61609f8b62a3078d0c35e345b449d51ee9d6a7/StarMap-CryptoTool.tar.gz -------------------------------------------------------------------------------- /StarMapTools.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C3Pool/ST-CryptoServer/cc61609f8b62a3078d0c35e345b449d51ee9d6a7/StarMapTools.zip -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | wget https://github.com/C3Pool/ST-CryptoServer/releases/download/v1.0.5/StarMap-CryptoTool.tar.gz 2 | tar -zxvf StarMap-CryptoTool.tar.gz 3 | bash start.sh --------------------------------------------------------------------------------