使用ConoHa在云端运行的免费GRC替代服务“Serposcope”

在Conoha上搭建服务器

如果选择512MB内存的计划,则每月费用为630日元。

bacbe5e559115dad87f60d973511c005[1].png

我们会安装Serposcope所需的一切。

安装和配置Nginx。

首先是Nginx。

$ yum -y install nginx

假设将Serposcope安装在/var/www/serposcope目录下,我们将开始进行配置。
此外,感觉在URL后面添加 :7134 也不太方便,所以我们将把端口80的访问重定向到7134。


    server {
        listen       80 default_server;
        listen       [::]:80 default_server;
        server_name  _;
        root         /var/www/serposcope;

        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;

        location / {
            root              /var/www/serposcope;
            proxy_pass        http://127.0.0.1:7134;
            proxy_set_header  X-Forwarded-Host $host;
        }

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }

完成后,我们将重新启动以应用设置,并配置Nginx在启动时自动启动。

$ systemctl restart nginx
$ systemctl enable nginx

Serposcope安装。

首先,安装Serposcope所必需的Java运行环境。

$ yum -y install java-1.8.0-openjdk.x86_64

接下来,创建一个/var/www/serposcope目录并安装Serposcope。

$ mkdir -p /var/www/serposcope
$ cd /var/www/serposcope
$ wget https://serposcope.serphacker.com/download/2.6.0/serposcope-2.6.0.jar

在启动时设置为不会因关闭终端而终止。

$ nohup java -jar /var/www/serposcope/serposcope-2.6.0.jar

防火墙的设置 Huǒ de shè zhì)

通过端口7134传输HTTP和Serposcope使用的端口。

$ firewall-cmd --add-service=http --permanent
$ firewall-cmd --add-port=7134/tcp --zone=public --permanent

使用permanent选项重新加载配置。

$ firewall-cmd --reload

完成了

当你访问IP地址 http://***.***.***.*** ,你将会被重定向到 http://***.***.***.***/create-admin,并且可以创建一个账户。

1ffa7d313d3b80d990986fbc113ea2be[1].png

登录后完成。

更新

$ cd /var/www/serposcope
$ wget https://serposcope.serphacker.com/download/2.10.0/serposcope-2.10.0.jar
$ nohup java -jar /var/www/serposcope/serposcope-2.10.0.jar

请参考

我在段田先生的博客上了解到了Serposcope,我感到非常抱歉。

广告
将在 10 秒后关闭
bannerAds