阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

使用Zabbix监控Nginx图文详解

476次阅读
没有评论

共计 12099 个字符,预计需要花费 31 分钟才能阅读完成。

手把手教你使用 Zabbix 监控 Nginx。

环境介绍:

服务器系统版本:CentOS release 6.6 (Final)

内核版本:Linux hk_nginx2.6.32-504.3.3.el6.x86_64

ZabbixServer 版本:Zabbix server v2.2.2

ZabbixAgent 版本:Zabbix agent v2.2.2

Nginxweb 版本:nginx version: nginx/1.5.8

在 zabbix agentd 客户端上,查看 nginx 是否加载了 –with-http_stub_status_module。因为 zabbix 监控 nginx 是根据 nginx 的 Stub Status 模块,抓取 Status 模块所提供的数据。假如以前没开启,现在想启用 StubStatus 模块,在编译 nginx 的时候要加上参数 –with-http_stub_status_module,执行./configure && make 就可以了,不用 make install。不过,一般情况下都是安装了的。

1. 在 nginx 的配置文件中,添加 status 配置。

location/nginx-status {

  stub_status on;

  access_log  off;

  allow 127.0.0.1;

  allow 192.168.1.10;  #(zabbix 服务器的 IP 地址,一般是内网地址)

  deny all;     

}

2. 访问设置好的 nginx-status 链接,如图所示:

使用 Zabbix 监控 Nginx 图文详解

3.nginx Status 详细说明:

Activeconnections: 对后端发起的活动连接数;

server accepts 2349542:nginx 总共处理了 2349542 个连接;

handled:成功创建了 64603417 次握手;

requests:总共处理了 8798670 请求。

Reading:nginx 读取客户端的 header 数;

Writing: nginx 返回给客户端的 header 数;

Waiting: nginx 请求处理完成,正在等待下一请求指令的连接。

4. 在 agentd 上编写监控 nginx 的脚本,并且设置属主和属组为 zabbix,赋予执行权限。

cd /usr/local/zabbix/scripts
cat nginx_status.sh	    
#!/bin/bash
# Script to fetch nginx statuses for tribily monitoring systems
# Author: krish@toonheart.com
# License: GPLv2
# Set Variables
BKUP_DATE=`/bin/date +%Y%m%d`
LOG="/data/log/zabbix/webstatus.log"
HOST=127.0.0.1
PORT="80"
# Functions to return nginx stats
function active {
/usr/bin/curl "http://$HOST:$PORT/nginx-status" 2>/dev/null| grep 'Active' | awk '{print $NF}'
}
function reading {
/usr/bin/curl "http://$HOST:$PORT/nginx-status" 2>/dev/null| grep 'Reading' | awk '{print $2}'
}
function writing {
/usr/bin/curl "http://$HOST:$PORT/nginx-status" 2>/dev/null| grep 'Writing' | awk '{print $4}'
}
function waiting {
/usr/bin/curl "http://$HOST:$PORT/nginx-status" 2>/dev/null| grep 'Waiting' | awk '{print $6}'
}
function accepts {
/usr/bin/curl "http://$HOST:$PORT/nginx-status" 2>/dev/null| awk NR==3 | awk '{print $1}'
}
function handled {
/usr/bin/curl "http://$HOST:$PORT/nginx-status" 2>/dev/null| awk NR==3 | awk '{print $2}'
}
function requests {
/usr/bin/curl "http://$HOST:$PORT/nginx-status" 2>/dev/null| awk NR==3 | awk '{print $3}'
}
# Run the requested function
$1
chmod o+x nginx_status.sh
chown zabbix.zabbix nginx_status.sh
ll
total 4
-rwxr-xr-x 1 zabbix zabbix 1273 May 13 17:42 nginx_status.sh

5. 修改 nginx 服务器上 zabbix 客户端的 zabbix_agentd.conf 配置文件,然后重启 zabbix agentd 客户端。

cd /usr/local/zabbix/etc
grep -v "^[#;]" zabbix_agentd.conf | grep -v "^$"
LogFile=/tmp/zabbix_agentd.log
Server=192.168.1.10        #zabbix server 端的 IP 地址
ServerActive=192.168.1.10  #zabbix server 端的 IP 地址
Hostname=192.168.1.5       #本地的 IP 地址
UnsafeUserParameters=1
## 下面的是新添加进去的
UserParameter=nginx.accepts,/usr/local/zabbix/scripts/nginx_status.sh accepts  
UserParameter=nginx.handled,/usr/local/zabbix/scripts/nginx_status.sh handled  
UserParameter=nginx.requests,/usr/local/zabbix/scripts/nginx_status.sh requests  
UserParameter=nginx.connections.active,/usr/local/zabbix/scripts/nginx_status.sh active  
UserParameter=nginx.connections.reading,/usr/local/zabbix/scripts/nginx_status.sh reading  
UserParameter=nginx.connections.writing,/usr/local/zabbix/scripts/nginx_status.sh writing  
UserParameter=nginx.connections.waiting,/usr/local/zabbix/scripts/nginx_status.sh waiting

6. 在 zabbix server 端进行 zabbix_get 测试, 取到数据了,说明没问题。

/usr/local/zabbix/bin/zabbix_get -s 192.168.1.5 -p 10050 -k "nginx.connections.active"
11
/usr/local/zabbix/bin/zabbix_get -s 192.168.1.5 -p 10050 -k "nginx.connections.waiting"
10
/usr/local/zabbix/bin/zabbix_get -s 192.168.1.5 -p 10050 -k "nginx.connections.writing"
1
/usr/local/zabbix/bin/zabbix_get -s 192.168.1.5 -p 10050 -k "nginx.accepts"           
2350638
/usr/local/zabbix/bin/zabbix_get -s 192.168.1.5 -p 10050 -k "nginx.requests"
8801086

7. 在网上搜到一个 zabbix 中 nginx status 的模板, 把模板导入 zabbix 服务器。

- <zabbix_export version="1.0" date="14.03.11" time="08.48">
- <hosts>
- <host name="Nginx Status">
  <proxy_hostid>0</proxy_hostid> 
  <useip>1</useip> 
  <dns /> 
  <ip>127.0.0.1</ip> 
  <port>10050</port> 
  <status>3</status> 
  <useipmi>0</useipmi> 
  <ipmi_ip>127.0.0.1</ipmi_ip> 
  <ipmi_port>623</ipmi_port> 
  <ipmi_authtype>0</ipmi_authtype> 
  <ipmi_privilege>2</ipmi_privilege> 
  <ipmi_username /> 
  <ipmi_password /> 
- <groups>
  <group>Freetrade</group> 
  </groups>
  <triggers /> 
- <items>
- <item type="7" key="nginx.accepts" value_type="3">
  <description>Nginx Accepts</description> 
  <ipmi_sensor /> 
  <delay>30</delay> 
  <history>365</history> 
  <trends>365</trends> 
  <status>0</status> 
  <data_type>0</data_type> 
  <units /> 
  <multiplier>0</multiplier> 
  <delta>0</delta> 
  <formula>0</formula> 
  <lastlogsize>0</lastlogsize> 
  <logtimefmt /> 
  <delay_flex /> 
  <authtype>0</authtype> 
  <username /> 
  <password /> 
  <publickey /> 
  <privatekey /> 
  <params /> 
  <trapper_hosts>localhost</trapper_hosts> 
  <snmp_community /> 
  <snmp_oid /> 
  <snmp_port>161</snmp_port> 
  <snmpv3_securityname /> 
  <snmpv3_securitylevel>0</snmpv3_securitylevel> 
  <snmpv3_authpassphrase /> 
  <snmpv3_privpassphrase /> 
- <applications>
  <application>Nginx</application> 
  </applications>
  </item>
- <item type="7" key="nginx.connections.active" value_type="3">
  <description>Nginx Connections Active</description> 
  <ipmi_sensor /> 
  <delay>30</delay> 
  <history>365</history> 
  <trends>365</trends> 
  <status>0</status> 
  <data_type>0</data_type> 
  <units /> 
  <multiplier>0</multiplier> 
  <delta>0</delta> 
  <formula>0</formula> 
  <lastlogsize>0</lastlogsize> 
  <logtimefmt /> 
  <delay_flex /> 
  <authtype>0</authtype> 
  <username /> 
  <password /> 
  <publickey /> 
  <privatekey /> 
  <params /> 
  <trapper_hosts>localhost</trapper_hosts> 
  <snmp_community /> 
  <snmp_oid /> 
  <snmp_port>161</snmp_port> 
  <snmpv3_securityname /> 
  <snmpv3_securitylevel>0</snmpv3_securitylevel> 
  <snmpv3_authpassphrase /> 
  <snmpv3_privpassphrase /> 
- <applications>
  <application>Nginx</application> 
  </applications>
  </item>
- <item type="7" key="nginx.connections.reading" value_type="3">
  <description>Nginx Connections Reading</description> 
  <ipmi_sensor /> 
  <delay>30</delay> 
  <history>365</history> 
  <trends>365</trends> 
  <status>0</status> 
  <data_type>0</data_type> 
  <units /> 
  <multiplier>0</multiplier> 
  <delta>0</delta> 
  <formula>0</formula> 
  <lastlogsize>0</lastlogsize> 
  <logtimefmt /> 
  <delay_flex /> 
  <authtype>0</authtype> 
  <username /> 
  <password /> 
  <publickey /> 
  <privatekey /> 
  <params /> 
  <trapper_hosts>localhost</trapper_hosts> 
  <snmp_community /> 
  <snmp_oid /> 
  <snmp_port>161</snmp_port> 
  <snmpv3_securityname /> 
  <snmpv3_securitylevel>0</snmpv3_securitylevel> 
  <snmpv3_authpassphrase /> 
  <snmpv3_privpassphrase /> 
- <applications>
  <application>Nginx</application> 
  </applications>
  </item>
- <item type="7" key="nginx.connections.waiting" value_type="3">
  <description>Nginx Connections Waiting</description> 
  <ipmi_sensor /> 
  <delay>30</delay> 
  <history>365</history> 
  <trends>365</trends> 
  <status>0</status> 
  <data_type>0</data_type> 
  <units /> 
  <multiplier>0</multiplier> 
  <delta>0</delta> 
  <formula>0</formula> 
  <lastlogsize>0</lastlogsize> 
  <logtimefmt /> 
  <delay_flex /> 
  <authtype>0</authtype> 
  <username /> 
  <password /> 
  <publickey /> 
  <privatekey /> 
  <params /> 
  <trapper_hosts>localhost</trapper_hosts> 
  <snmp_community /> 
  <snmp_oid /> 
  <snmp_port>161</snmp_port> 
  <snmpv3_securityname /> 
  <snmpv3_securitylevel>0</snmpv3_securitylevel> 
  <snmpv3_authpassphrase /> 
  <snmpv3_privpassphrase /> 
- <applications>
  <application>Nginx</application> 
  </applications>
  </item>
- <item type="7" key="nginx.connections.writing" value_type="3">
  <description>Nginx Connections Writing</description> 
  <ipmi_sensor /> 
  <delay>30</delay> 
  <history>365</history> 
  <trends>365</trends> 
  <status>0</status> 
  <data_type>0</data_type> 
  <units /> 
  <multiplier>0</multiplier> 
  <delta>0</delta> 
  <formula>0</formula> 
  <lastlogsize>0</lastlogsize> 
  <logtimefmt /> 
  <delay_flex /> 
  <authtype>0</authtype> 
  <username /> 
  <password /> 
  <publickey /> 
  <privatekey /> 
  <params /> 
  <trapper_hosts>localhost</trapper_hosts> 
  <snmp_community /> 
  <snmp_oid /> 
  <snmp_port>161</snmp_port> 
  <snmpv3_securityname /> 
  <snmpv3_securitylevel>0</snmpv3_securitylevel> 
  <snmpv3_authpassphrase /> 
  <snmpv3_privpassphrase /> 
- <applications>
  <application>Nginx</application> 
  </applications>
  </item>
- <item type="7" key="nginx.handled" value_type="3">
  <description>Nginx Handled</description> 
  <ipmi_sensor /> 
  <delay>30</delay> 
  <history>365</history> 
  <trends>365</trends> 
  <status>0</status> 
  <data_type>0</data_type> 
  <units /> 
  <multiplier>0</multiplier> 
  <delta>0</delta> 
  <formula>0</formula> 
  <lastlogsize>0</lastlogsize> 
  <logtimefmt /> 
  <delay_flex /> 
  <authtype>0</authtype> 
  <username /> 
  <password /> 
  <publickey /> 
  <privatekey /> 
  <params /> 
  <trapper_hosts>localhost</trapper_hosts> 
  <snmp_community /> 
  <snmp_oid /> 
  <snmp_port>161</snmp_port> 
  <snmpv3_securityname /> 
  <snmpv3_securitylevel>0</snmpv3_securitylevel> 
  <snmpv3_authpassphrase /> 
  <snmpv3_privpassphrase /> 
- <applications>
  <application>Nginx</application> 
  </applications>
  </item>
- <item type="7" key="nginx.requests" value_type="3">
  <description>Nginx Requests</description> 
  <ipmi_sensor /> 
  <delay>30</delay> 
  <history>365</history> 
  <trends>365</trends> 
  <status>0</status> 
  <data_type>0</data_type> 
  <units /> 
  <multiplier>0</multiplier> 
  <delta>0</delta> 
  <formula>0</formula> 
  <lastlogsize>0</lastlogsize> 
  <logtimefmt /> 
  <delay_flex /> 
  <authtype>0</authtype> 
  <username /> 
  <password /> 
  <publickey /> 
  <privatekey /> 
  <params /> 
  <trapper_hosts>localhost</trapper_hosts> 
  <snmp_community /> 
  <snmp_oid /> 
  <snmp_port>161</snmp_port> 
  <snmpv3_securityname /> 
  <snmpv3_securitylevel>0</snmpv3_securitylevel> 
  <snmpv3_authpassphrase /> 
  <snmpv3_privpassphrase /> 
- <applications>
  <application>Nginx</application> 
  </applications>
  </item>
  </items>
  <templates /> 
- <graphs>
- <graph name="Nginx Socket Status" width="900" height="200">
  <ymin_type>0</ymin_type> 
  <ymax_type>0</ymax_type> 
  <ymin_item_key /> 
  <ymax_item_key /> 
  <show_work_period>1</show_work_period> 
  <show_triggers>1</show_triggers> 
  <graphtype>0</graphtype> 
  <yaxismin>0.0000</yaxismin> 
  <yaxismax>100.0000</yaxismax> 
  <show_legend>0</show_legend> 
  <show_3d>0</show_3d> 
  <percent_left>0.0000</percent_left> 
  <percent_right>0.0000</percent_right> 
- <graph_elements>
- <graph_element item="Nginx Status:nginx.accepts">
  <drawtype>0</drawtype> 
  <sortorder>0</sortorder> 
  <color>00EE00</color> 
  <yaxisside>0</yaxisside> 
  <calc_fnc>2</calc_fnc> 
  <type>0</type> 
  <periods_cnt>5</periods_cnt> 
  </graph_element>
- <graph_element item="Nginx Status:nginx.handled">
  <drawtype>0</drawtype> 
  <sortorder>0</sortorder> 
  <color>EE0000</color> 
  <yaxisside>0</yaxisside> 
  <calc_fnc>2</calc_fnc> 
  <type>0</type> 
  <periods_cnt>5</periods_cnt> 
  </graph_element>
- <graph_element item="Nginx Status:nginx.requests">
  <drawtype>0</drawtype> 
  <sortorder>1</sortorder> 
  <color>EEEE00</color> 
  <yaxisside>0</yaxisside> 
  <calc_fnc>2</calc_fnc> 
  <type>0</type> 
  <periods_cnt>5</periods_cnt> 
  </graph_element>
  </graph_elements>
  </graph>
- <graph name="Nginx Clients Status" width="900" height="200">
  <ymin_type>0</ymin_type> 
  <ymax_type>0</ymax_type> 
  <ymin_item_key /> 
  <ymax_item_key /> 
  <show_work_period>1</show_work_period> 
  <show_triggers>1</show_triggers> 
  <graphtype>0</graphtype> 
  <yaxismin>0.0000</yaxismin> 
  <yaxismax>100.0000</yaxismax> 
  <show_legend>0</show_legend> 
  <show_3d>0</show_3d> 
  <percent_left>0.0000</percent_left> 
  <percent_right>0.0000</percent_right> 
- <graph_elements>
- <graph_element item="Nginx Status:nginx.connections.active">
  <drawtype>0</drawtype> 
  <sortorder>0</sortorder> 
  <color>0000EE</color> 
  <yaxisside>0</yaxisside> 
  <calc_fnc>2</calc_fnc> 
  <type>0</type> 
  <periods_cnt>5</periods_cnt> 
  </graph_element>
- <graph_element item="Nginx Status:nginx.connections.writing">
  <drawtype>0</drawtype> 
  <sortorder>1</sortorder> 
  <color>EE0000</color> 
  <yaxisside>0</yaxisside> 
  <calc_fnc>2</calc_fnc> 
  <type>0</type> 
  <periods_cnt>5</periods_cnt> 
  </graph_element>
- <graph_element item="Nginx Status:nginx.connections.waiting">
  <drawtype>0</drawtype> 
  <sortorder>2</sortorder> 
  <color>EEEE00</color> 
  <yaxisside>0</yaxisside> 
  <calc_fnc>2</calc_fnc> 
  <type>0</type> 
  <periods_cnt>5</periods_cnt> 
  </graph_element>
- <graph_element item="Nginx Status:nginx.connections.reading">
  <drawtype>0</drawtype> 
  <sortorder>3</sortorder> 
  <color>00EE00</color> 
  <yaxisside>0</yaxisside> 
  <calc_fnc>2</calc_fnc> 
  <type>0</type> 
  <periods_cnt>5</periods_cnt> 
  </graph_element>
  </graph_elements>
  </graph>
  </graphs>
  <macros /> 
  </host>
  </hosts>
  <dependencies /> 
  </zabbix_export>

8. 登陆到 zabbix 服务器首页,点击”组态”-“模板”。

使用 Zabbix 监控 Nginx 图文详解

点击”汇入”, 如图所示

使用 Zabbix 监控 Nginx 图文详解

点击“汇入文件“,然后把找到的 nginx_status.xml 文件,汇入模板。

使用 Zabbix 监控 Nginx 图文详解

创建应用集 Nginx Server。

使用 Zabbix 监控 Nginx 图文详解使用 Zabbix 监控 Nginx 图文详解

把 nginx 主机连接到模板上去。

使用 Zabbix 监控 Nginx 图文详解

最后,看下是否可以检测到数据,是否可以顺利出图。

使用 Zabbix 监控 Nginx 图文详解使用 Zabbix 监控 Nginx 图文详解

到此为止,实验结束。

一些 Zabbix 相关教程集合

Ubuntu 14.04 下 Zabbix2.4.5 源码编译安装  http://www.linuxidc.com/Linux/2015-05/117657.htm

安装部署分布式监控系统 Zabbix 2.06 http://www.linuxidc.com/Linux/2013-07/86942.htm

《安装部署分布式监控系统 Zabbix 2.06》http://www.linuxidc.com/Linux/2013-07/86942.htm

CentOS 6.3 下 Zabbix 安装部署 http://www.linuxidc.com/Linux/2013-05/83786.htm

Zabbix 分布式监控系统实践 http://www.linuxidc.com/Linux/2013-06/85758.htm

CentOS 6.3 下 Zabbix 监控 apache server-status http://www.linuxidc.com/Linux/2013-05/84740.htm

CentOS 6.3 下 Zabbix 监控 MySQL 数据库参数 http://www.linuxidc.com/Linux/2013-05/84800.htm

64 位 CentOS 6.2 下安装 Zabbix 2.0.6   http://www.linuxidc.com/Linux/2014-11/109541.htm

ZABBIX 的详细介绍 :请点这里
ZABBIX 的下载地址 :请点这里

本文永久更新链接地址 :http://www.linuxidc.com/Linux/2015-09/123039.htm

正文完
星哥玩云-微信公众号
post-qrcode
 0
星锅
版权声明:本站原创文章,由 星锅 于2022-01-21发表,共计12099字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中

星哥玩云

星哥玩云
星哥玩云
分享互联网知识
用户数
4
文章数
19350
评论数
4
阅读量
7957068
文章搜索
热门文章
星哥带你玩飞牛NAS-6:抖音视频同步工具,视频下载自动下载保存

星哥带你玩飞牛NAS-6:抖音视频同步工具,视频下载自动下载保存

星哥带你玩飞牛 NAS-6:抖音视频同步工具,视频下载自动下载保存 前言 各位玩 NAS 的朋友好,我是星哥!...
星哥带你玩飞牛NAS-3:安装飞牛NAS后的很有必要的操作

星哥带你玩飞牛NAS-3:安装飞牛NAS后的很有必要的操作

星哥带你玩飞牛 NAS-3:安装飞牛 NAS 后的很有必要的操作 前言 如果你已经有了飞牛 NAS 系统,之前...
我把用了20年的360安全卫士卸载了

我把用了20年的360安全卫士卸载了

我把用了 20 年的 360 安全卫士卸载了 是的,正如标题你看到的。 原因 偷摸安装自家的软件 莫名其妙安装...
再见zabbix!轻量级自建服务器监控神器在Linux 的完整部署指南

再见zabbix!轻量级自建服务器监控神器在Linux 的完整部署指南

再见 zabbix!轻量级自建服务器监控神器在 Linux 的完整部署指南 在日常运维中,服务器监控是绕不开的...
飞牛NAS中安装Navidrome音乐文件中文标签乱码问题解决、安装FntermX终端

飞牛NAS中安装Navidrome音乐文件中文标签乱码问题解决、安装FntermX终端

飞牛 NAS 中安装 Navidrome 音乐文件中文标签乱码问题解决、安装 FntermX 终端 问题背景 ...
阿里云CDN
阿里云CDN-提高用户访问的响应速度和成功率
随机文章
星哥带你玩飞牛NAS-6:抖音视频同步工具,视频下载自动下载保存

星哥带你玩飞牛NAS-6:抖音视频同步工具,视频下载自动下载保存

星哥带你玩飞牛 NAS-6:抖音视频同步工具,视频下载自动下载保存 前言 各位玩 NAS 的朋友好,我是星哥!...
小白也能看懂:什么是云服务器?腾讯云 vs 阿里云对比

小白也能看懂:什么是云服务器?腾讯云 vs 阿里云对比

小白也能看懂:什么是云服务器?腾讯云 vs 阿里云对比 星哥玩云,带你从小白到上云高手。今天咱们就来聊聊——什...
三大开源投屏神器横评:QtScrcpy、scrcpy、escrcpy 谁才是跨平台控制 Android 的最优解?

三大开源投屏神器横评:QtScrcpy、scrcpy、escrcpy 谁才是跨平台控制 Android 的最优解?

  三大开源投屏神器横评:QtScrcpy、scrcpy、escrcpy 谁才是跨平台控制 Andr...
安装并使用谷歌AI编程工具Antigravity(亲测有效)

安装并使用谷歌AI编程工具Antigravity(亲测有效)

  安装并使用谷歌 AI 编程工具 Antigravity(亲测有效) 引言 Antigravity...
【1024程序员】我劝你赶紧去免费领一个AWS、华为云等的主机

【1024程序员】我劝你赶紧去免费领一个AWS、华为云等的主机

【1024 程序员】我劝你赶紧去免费领一个 AWS、华为云等的主机 每年 10 月 24 日,程序员们都会迎来...

免费图片视频管理工具让灵感库告别混乱

一言一句话
-「
手气不错
星哥带你玩飞牛NAS-14:解锁公网自由!Lucky功能工具安装使用保姆级教程

星哥带你玩飞牛NAS-14:解锁公网自由!Lucky功能工具安装使用保姆级教程

星哥带你玩飞牛 NAS-14:解锁公网自由!Lucky 功能工具安装使用保姆级教程 作为 NAS 玩家,咱们最...
每天一个好玩的网站-手机博物馆-CHAZ 3D Experience

每天一个好玩的网站-手机博物馆-CHAZ 3D Experience

每天一个好玩的网站 - 手机博物馆 -CHAZ 3D Experience 一句话介绍:一个用 3D 方式重温...
多服务器管理神器 Nexterm 横空出世!NAS/Win/Linux 通吃,SSH/VNC/RDP 一站式搞定

多服务器管理神器 Nexterm 横空出世!NAS/Win/Linux 通吃,SSH/VNC/RDP 一站式搞定

多服务器管理神器 Nexterm 横空出世!NAS/Win/Linux 通吃,SSH/VNC/RDP 一站式搞...
300元就能买到的”小钢炮”?惠普7L四盘位小主机解析

300元就能买到的”小钢炮”?惠普7L四盘位小主机解析

  300 元就能买到的 ” 小钢炮 ”?惠普 7L 四盘位小主机解析 最近...
每年0.99刀,拿下你的第一个顶级域名,详细注册使用

每年0.99刀,拿下你的第一个顶级域名,详细注册使用

每年 0.99 刀,拿下你的第一个顶级域名,详细注册使用 前言 作为长期折腾云服务、域名建站的老玩家,星哥一直...