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

CentOS 6.4 minimal初始安装后再安装Ganglia

412次阅读
没有评论

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

说明

ganglia 项目用于集群监控真的很好用,可惜安装起来依赖太多了。

以下是以 CentOS6.4 的 minimal 系统为初始环境,并且是原汁原味的刚刚装完系统后,只启用网卡服务的系统作为 ganglia 的安装环境,

一、安装服务端
1、安装依赖
yum -y install apr-devel apr-util check-devel cairo-devel pango-devel libxml2-devel rpmbuild glib2-devel dbus-devel freetype-devel fontconfig-devel gcc-c++ expat-devel python-devel libXrender-devel perl-ExtUtils-CBuilder perl-ExtUtils-MakeMaker make rsync wget
2、安装 apache 的组件
安装 apr-1.4.6
wget http://apache.etoak.com//apr/apr-1.4.6.tar.gz
tar -xf apr-1.4.6.tar.gz && cd apr-1.4.6
./configure –prefix=/usr/local/apr && make && make install && cd ..
安装 apr-util-1.5.2
wget http://apache.etoak.com//apr/apr-util-1.5.2.tar.gz
tar -xf apr-util-1.5.2.tar.gz && cd apr-util-1.5.2
./configure –prefix=/usr/local/apr-util –with-apr=/usr/local/apr && make && make install && cd ..
安装 httpd-2.2.24
wget http://mirror.esocc.com/apache//httpd/httpd-2.2.24.tar.gz
tar -xf httpd-2.2.24.tar.gz && cd httpd-2.2.24
./configure –prefix=/usr/local/apache2 –enable-so –enable-mods-shared=most –with-included-apr –with-apr=/usr/local/apr –with-apr-util=/usr/local/apr-util && make && make install && cd ..
# 将 httpd 写入启动脚本并启动(可选)
echo ‘/usr/local/apache2/bin/apachectl start’ >>/etc/rc.d/rc.local && /usr/local/apache2/bin/apachectl start
3、安装和配置 php
安装
wget http://www.php.net/get/php-5.3.18.tar.gz/from/cn2.php.net/mirror
tar -xf php-5.3.18.tar.gz && cd php-5.3.18
./configure –prefix=/usr/local/php –with-apxs2=/usr/local/apache2/bin/apxs && make && make install && cd ..
在 httpd 中配置 php
修改 /usr/local/apache2/conf/httpd.conf 配置文件
添加内容
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch “\.ph(p[2-6]?|tml)$”>
SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch “\.phps$”>
SetHandler application/x-httpd-php-source
</FilesMatch>
修改内容
在 <IfModule dir_module> 中添加 index.php
4、安装 libconfuse 相关
wget http://pkgs.repoforge.org/libconfuse/libconfuse-2.6-2.el5.rf.x86_64.rpm
wget http://pkgs.repoforge.org/libconfuse/libconfuse-devel-2.6-2.el5.rf.x86_64.rpm
rpm -ivh libconfuse-*
5、安装 pcre
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.31.tar.gz
tar -xf pcre-8.31.tar.gz && cd pcre-8.31
./configure && make && make install && cd ..
echo ‘/usr/local/lib’ >/etc/ld.so.conf.d/libpcre.conf && ldconfig -v
6、安装 rrdtool
wget http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.4.7.tar.gz
tar -xf rrdtool-1.4.7.tar.gz && cd rrdtool-1.4.7
./configure –prefix=/usr/local && make && make install && cd ..
echo ‘/usr/local/lib’ >/etc/ld.so.conf.d/librrd.conf && ldconfig -v
7、安装 ganglia 后台服务并设置
安装
wget http://sourceforge.net/projects/ganglia/files/ganglia%20monitoring%20core/3.4.0/ganglia-3.4.0.tar.gz/download
tar -xf ganglia-3.4.0.tar.gz && cd ganglia-3.4.0
./configure –prefix=/usr/local/ganglia –with-gmetad –with-librrd=/usr/local/lib –sysconfdir=/etc/ganglia && make && make install && cd ..
将 gmond 和 gmetad 作为服务运行,并加入开机服务启动中(可选)
复制到服务,并设开机启动
cp ganglia-3.4.0/gmond/gmond.init /etc/rc.d/init.d/gmond
cp ganglia-3.4.0/gmetad/gmetad.init /etc/rc.d/init.d/gmetad
chkconfig –add gmond && chkconfig gmond on
chkconfig –add gmetad && chkconfig gmetad on
修改服务配置信息
修改 /etc/rc.d/init.d/gmetad 文件将 GMETAD 变量改为:GMETAD=/usr/local/ganglia/sbin/gmetad
和 /etc/rc.d/init.d/gmond 文件将 GMOND 变量改为:GMOND=/usr/local/ganglia/sbin/gmond
设置 rrd 的存储位置
mkdir -p /var/lib/ganglia/rrds
chown nobody:nobody /var/lib/ganglia/rrds
生成 gmond 的配置文件并修改配置信息(可选)
/usr/local/ganglia/sbin/gmond -t |tee /etc/ganglia/gmond.conf
修改 cluster 配置段内容,例如:name = “Cluster”。可以默认不修改
修改 gmetad 的配置信息(可选)
修改 /etc/ganglia/gmetad.conf 配置文件
把 data_source 配置名称以及服务器名称修改为自己的。可以默认
把 gridname 前的注释放开,改为自己的名称,例如:”cluster”。可以默认
8、安装 ganglia 的 web 端以及设置
下载和解压
wget http://sourceforge.net/projects/ganglia/files/ganglia-web/3.5.4/ganglia-web-3.5.4.tar.gz/download
tar -xf ganglia-web-3.5.4.tar.gz
cp -r ganglia-web-3.5.4 /usr/local/apache2/htdocs/ganglia
修改 Makefile 文件并安装
cd /usr/local/apache2/htdocs/ganglia
修改 Makefile 中 GDESTDIR 和 APACHE_USER 参数,然后执行 make install 安装
GDESTDIR=/usr/local/apache2/htdocs/ganglia
APACHE_USER=daemon
make install
修改 php 配置文件
cp conf_default.php conf.php
修改 conf.php 文件
如果设置 rrd 的存储位置的时候是按照上文设置的话,就可以跳过对 $conf[‘gmetad_root’]和 $conf[‘rrds’]的修改,否则改为相应位置
$conf[‘rrdtool’] = “/usr/local/bin/rrdtool”;
$conf[‘external_location’] = http://localhost/ganglia;
$conf[‘case_sensitive_hostnames’] = false;
9、启动 ganglia
启动或重启 httpd
/usr/local/apache2/bin/apachectl start
启动 gmetad
service gmetad start
启动 gmond
service gmond start
二、安装客户端
1、安装依赖
yum -y install apr-devel apr-util
2、安装 libconfuse 相关
同服务端
3、安装 pcre
同服务端
4、安装和配置 ganglia
安装
tar -xf ganglia-3.4.0.tar.gz && cd ganglia-3.4.0
./configure –prefix=/usr/local/ganglia –sysconfdir=/etc/ganglia && make && make install && cd ..
配置
复制服务端配置
scp ip:/etc/rc.d/init.d/gmond /etc/rc.d/init.d/gmond
mkdir /etc/ganglia
scp ip:/etc/ganglia/gmond.conf /etc/ganglia
把 gmond 加入服务并开机启动
cp ganglia-3.4.0/gmond/gmond.init /etc/rc.d/init.d/gmond
chkconfig –add gmond && chkconfig gmond on
5、启动 ganglia 客户端
/etc/init.d/gmond start
三、特殊要求
如果你的服务器有两块网卡,eth0 使用公网地址,eth1 使用局域网地址,而你的监控服务器和被监控服务器之间的通信你希望通过局域网地址实现以减少公网网卡的负载,那么可以使用以下命令
ip route add 239.2.11.71 dev eth1
因为 239.2.11.71 是 ganglia 默认的多点传输通道,所以要加一条路由使它通过 eth1, 也就是内网网卡,239.2.11.71 这个地址你可以在 /etc/ganglia/gmond.conf 中修改

相关阅读

使用 Ganglia 监控 Hadoop 集群 http://www.linuxidc.com/Linux/2012-05/61349.htm

在 VMware Workstation 的 Ubuntu 下安装和配置 Hadoop 与 Ganglia http://www.linuxidc.com/Linux/2013-06/85856.htm

Ganglia 安装部署之一建立 Grid http://www.linuxidc.com/Linux/2013-05/83673.htm

Ganglia 极其简单安装教程 yum 版 http://www.linuxidc.com/Linux/2012-12/76536.htm

Ganglia 快速开始向导(翻译自官方 wiki)http://www.linuxidc.com/Linux/2013-11/92747.htm

CentOS 集群上安装 Ganglia-3.6.0 监控 Hadoop-2.2.0 和 HBase-0.96.0 http://www.linuxidc.com/Linux/2014-01/95804.htm

四、错误分析
1、apr 错误
Checking for apr
checking for apr-1-config… no
configure: error: apr-1-config binary not found in path
解决
yum -y install apr-devel apr-util expat-devel
2、confuse 错误
Checking for confuse
checking for cfg_parse in -lconfuse… no
Trying harder including gettext
checking for cfg_parse in -lconfuse… no
Trying harder including iconv
checking for cfg_parse in -lconfuse… no
libconfuse not found
解决
rpm -ivh libconfuse-*
3、expat 错误
Checking for expat
checking for XML_ParserCreate in -lexpat… no
libexpat not found
解决
yum install expat-devel
4、pcre 错误
Checking for pcre
checking pcre/pcre.h usability… no
checking pcre/pcre.h presence… no
checking for pcre/pcre.h… no
checking pcre.h usability… no
checking pcre.h presence… no
checking for pcre.h… no
checking for pcre_compile in -lpcre… no
libpcre not found, specify –with-libpcre=no to build without PCRE support
解决
安装 pcre
5、乱码错误

CentOS 6.4 minimal 初始安装后再安装 Ganglia
缺少字体文件,由于 CentOS 最小化安装缺少一些字体文件,可以从别的机器复制过来,或这见附件,放到 /usr/share/fonts/ 中,然后重启 httpd
6、ganglia 的 web 页面显示错误
It is not safe to rely on the system’s timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function.
解决
修改 php.ini 文件,修改参数:date.timezone = PRC
修改 /usr/local/apache2/htdocs/ganglia/header.php 文件,在第二行添加:date_default_timezone_set(“PRC”);
错误中的错误
找不到 php.ini 文件
解决
复制 php 安装文件夹下的 php.ini-production 文件到 /etc/php.ini
也可以重新编译安装 php,加入编译参数 –with-config-file-path=/usr/local/php/etc 来手工指定 php 配置文件路径,然后把 php.ini-production 文件复制到 /usr/local/php/etc/php.ini
7、httpd 启动报错
错误 1
httpd: apr_sockaddr_info_get() failed for ganglia
httpd: Could not reliably determine the server’s fully qualified domain name, using 127.0.0.1 for ServerName
原因
没有在 apache 的 conf/http.conf 中设定 ServerName。所以 apache 会用主机上的名称来取代,首先会去找 /etc/hosts 中有没有主机的定义。
解决
设定 httpd.conf 文件中的 ServerName:ServerName localhost:80
在 /etc/hosts 中填入自己的主机名称:127.0.0.1 server1
错误 2
httpd: Syntax error on line 140 of /usr/local/apache2/conf/httpd.conf: Cannot load modules/mod_dir.so into server: /usr/local/apache2/modules/mod_dir.so: undefined symbol: apr_array_clear
原因
apache 编译的时候缺少模块
解决
重新编译,制定参数 –with-included-apr
8、ganglia 启动失败
[function.mkdir]: Permission denied
应该是 Makefile 中设置的用户名 daemon 错误,这个用户名要和 httpd.conf 中的 User 和 Group 一致,否则导致无权限读写文件,并且修改 Makefile 后要运行 make install 安装,否则仍然报错

更多 CentOS 相关信息见CentOS 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=14

说明

ganglia 项目用于集群监控真的很好用,可惜安装起来依赖太多了。

以下是以 CentOS6.4 的 minimal 系统为初始环境,并且是原汁原味的刚刚装完系统后,只启用网卡服务的系统作为 ganglia 的安装环境,

一、安装服务端
1、安装依赖
yum -y install apr-devel apr-util check-devel cairo-devel pango-devel libxml2-devel rpmbuild glib2-devel dbus-devel freetype-devel fontconfig-devel gcc-c++ expat-devel python-devel libXrender-devel perl-ExtUtils-CBuilder perl-ExtUtils-MakeMaker make rsync wget
2、安装 apache 的组件
安装 apr-1.4.6
wget http://apache.etoak.com//apr/apr-1.4.6.tar.gz
tar -xf apr-1.4.6.tar.gz && cd apr-1.4.6
./configure –prefix=/usr/local/apr && make && make install && cd ..
安装 apr-util-1.5.2
wget http://apache.etoak.com//apr/apr-util-1.5.2.tar.gz
tar -xf apr-util-1.5.2.tar.gz && cd apr-util-1.5.2
./configure –prefix=/usr/local/apr-util –with-apr=/usr/local/apr && make && make install && cd ..
安装 httpd-2.2.24
wget http://mirror.esocc.com/apache//httpd/httpd-2.2.24.tar.gz
tar -xf httpd-2.2.24.tar.gz && cd httpd-2.2.24
./configure –prefix=/usr/local/apache2 –enable-so –enable-mods-shared=most –with-included-apr –with-apr=/usr/local/apr –with-apr-util=/usr/local/apr-util && make && make install && cd ..
# 将 httpd 写入启动脚本并启动(可选)
echo ‘/usr/local/apache2/bin/apachectl start’ >>/etc/rc.d/rc.local && /usr/local/apache2/bin/apachectl start
3、安装和配置 php
安装
wget http://www.php.net/get/php-5.3.18.tar.gz/from/cn2.php.net/mirror
tar -xf php-5.3.18.tar.gz && cd php-5.3.18
./configure –prefix=/usr/local/php –with-apxs2=/usr/local/apache2/bin/apxs && make && make install && cd ..
在 httpd 中配置 php
修改 /usr/local/apache2/conf/httpd.conf 配置文件
添加内容
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch “\.ph(p[2-6]?|tml)$”>
SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch “\.phps$”>
SetHandler application/x-httpd-php-source
</FilesMatch>
修改内容
在 <IfModule dir_module> 中添加 index.php
4、安装 libconfuse 相关
wget http://pkgs.repoforge.org/libconfuse/libconfuse-2.6-2.el5.rf.x86_64.rpm
wget http://pkgs.repoforge.org/libconfuse/libconfuse-devel-2.6-2.el5.rf.x86_64.rpm
rpm -ivh libconfuse-*
5、安装 pcre
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.31.tar.gz
tar -xf pcre-8.31.tar.gz && cd pcre-8.31
./configure && make && make install && cd ..
echo ‘/usr/local/lib’ >/etc/ld.so.conf.d/libpcre.conf && ldconfig -v
6、安装 rrdtool
wget http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.4.7.tar.gz
tar -xf rrdtool-1.4.7.tar.gz && cd rrdtool-1.4.7
./configure –prefix=/usr/local && make && make install && cd ..
echo ‘/usr/local/lib’ >/etc/ld.so.conf.d/librrd.conf && ldconfig -v
7、安装 ganglia 后台服务并设置
安装
wget http://sourceforge.net/projects/ganglia/files/ganglia%20monitoring%20core/3.4.0/ganglia-3.4.0.tar.gz/download
tar -xf ganglia-3.4.0.tar.gz && cd ganglia-3.4.0
./configure –prefix=/usr/local/ganglia –with-gmetad –with-librrd=/usr/local/lib –sysconfdir=/etc/ganglia && make && make install && cd ..
将 gmond 和 gmetad 作为服务运行,并加入开机服务启动中(可选)
复制到服务,并设开机启动
cp ganglia-3.4.0/gmond/gmond.init /etc/rc.d/init.d/gmond
cp ganglia-3.4.0/gmetad/gmetad.init /etc/rc.d/init.d/gmetad
chkconfig –add gmond && chkconfig gmond on
chkconfig –add gmetad && chkconfig gmetad on
修改服务配置信息
修改 /etc/rc.d/init.d/gmetad 文件将 GMETAD 变量改为:GMETAD=/usr/local/ganglia/sbin/gmetad
和 /etc/rc.d/init.d/gmond 文件将 GMOND 变量改为:GMOND=/usr/local/ganglia/sbin/gmond
设置 rrd 的存储位置
mkdir -p /var/lib/ganglia/rrds
chown nobody:nobody /var/lib/ganglia/rrds
生成 gmond 的配置文件并修改配置信息(可选)
/usr/local/ganglia/sbin/gmond -t |tee /etc/ganglia/gmond.conf
修改 cluster 配置段内容,例如:name = “Cluster”。可以默认不修改
修改 gmetad 的配置信息(可选)
修改 /etc/ganglia/gmetad.conf 配置文件
把 data_source 配置名称以及服务器名称修改为自己的。可以默认
把 gridname 前的注释放开,改为自己的名称,例如:”cluster”。可以默认
8、安装 ganglia 的 web 端以及设置
下载和解压
wget http://sourceforge.net/projects/ganglia/files/ganglia-web/3.5.4/ganglia-web-3.5.4.tar.gz/download
tar -xf ganglia-web-3.5.4.tar.gz
cp -r ganglia-web-3.5.4 /usr/local/apache2/htdocs/ganglia
修改 Makefile 文件并安装
cd /usr/local/apache2/htdocs/ganglia
修改 Makefile 中 GDESTDIR 和 APACHE_USER 参数,然后执行 make install 安装
GDESTDIR=/usr/local/apache2/htdocs/ganglia
APACHE_USER=daemon
make install
修改 php 配置文件
cp conf_default.php conf.php
修改 conf.php 文件
如果设置 rrd 的存储位置的时候是按照上文设置的话,就可以跳过对 $conf[‘gmetad_root’]和 $conf[‘rrds’]的修改,否则改为相应位置
$conf[‘rrdtool’] = “/usr/local/bin/rrdtool”;
$conf[‘external_location’] = http://localhost/ganglia;
$conf[‘case_sensitive_hostnames’] = false;
9、启动 ganglia
启动或重启 httpd
/usr/local/apache2/bin/apachectl start
启动 gmetad
service gmetad start
启动 gmond
service gmond start
二、安装客户端
1、安装依赖
yum -y install apr-devel apr-util
2、安装 libconfuse 相关
同服务端
3、安装 pcre
同服务端
4、安装和配置 ganglia
安装
tar -xf ganglia-3.4.0.tar.gz && cd ganglia-3.4.0
./configure –prefix=/usr/local/ganglia –sysconfdir=/etc/ganglia && make && make install && cd ..
配置
复制服务端配置
scp ip:/etc/rc.d/init.d/gmond /etc/rc.d/init.d/gmond
mkdir /etc/ganglia
scp ip:/etc/ganglia/gmond.conf /etc/ganglia
把 gmond 加入服务并开机启动
cp ganglia-3.4.0/gmond/gmond.init /etc/rc.d/init.d/gmond
chkconfig –add gmond && chkconfig gmond on
5、启动 ganglia 客户端
/etc/init.d/gmond start
三、特殊要求
如果你的服务器有两块网卡,eth0 使用公网地址,eth1 使用局域网地址,而你的监控服务器和被监控服务器之间的通信你希望通过局域网地址实现以减少公网网卡的负载,那么可以使用以下命令
ip route add 239.2.11.71 dev eth1
因为 239.2.11.71 是 ganglia 默认的多点传输通道,所以要加一条路由使它通过 eth1, 也就是内网网卡,239.2.11.71 这个地址你可以在 /etc/ganglia/gmond.conf 中修改

相关阅读

使用 Ganglia 监控 Hadoop 集群 http://www.linuxidc.com/Linux/2012-05/61349.htm

在 VMware Workstation 的 Ubuntu 下安装和配置 Hadoop 与 Ganglia http://www.linuxidc.com/Linux/2013-06/85856.htm

Ganglia 安装部署之一建立 Grid http://www.linuxidc.com/Linux/2013-05/83673.htm

Ganglia 极其简单安装教程 yum 版 http://www.linuxidc.com/Linux/2012-12/76536.htm

Ganglia 快速开始向导(翻译自官方 wiki)http://www.linuxidc.com/Linux/2013-11/92747.htm

CentOS 集群上安装 Ganglia-3.6.0 监控 Hadoop-2.2.0 和 HBase-0.96.0 http://www.linuxidc.com/Linux/2014-01/95804.htm

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

星哥玩云

星哥玩云
星哥玩云
分享互联网知识
用户数
4
文章数
19351
评论数
4
阅读量
7974693
文章搜索
热门文章
星哥带你玩飞牛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-提高用户访问的响应速度和成功率
随机文章
【1024程序员】我劝你赶紧去免费领一个AWS、华为云等的主机

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

【1024 程序员】我劝你赶紧去免费领一个 AWS、华为云等的主机 每年 10 月 24 日,程序员们都会迎来...
颠覆 AI 开发效率!开源工具一站式管控 30+大模型ApiKey,秘钥付费+负载均衡全搞定

颠覆 AI 开发效率!开源工具一站式管控 30+大模型ApiKey,秘钥付费+负载均衡全搞定

  颠覆 AI 开发效率!开源工具一站式管控 30+ 大模型 ApiKey,秘钥付费 + 负载均衡全...
告别Notion焦虑!这款全平台开源加密笔记神器,让你的隐私真正“上锁”

告别Notion焦虑!这款全平台开源加密笔记神器,让你的隐私真正“上锁”

  告别 Notion 焦虑!这款全平台开源加密笔记神器,让你的隐私真正“上锁” 引言 在数字笔记工...
再见zabbix!轻量级自建服务器监控神器在Linux 的完整部署指南

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

再见 zabbix!轻量级自建服务器监控神器在 Linux 的完整部署指南 在日常运维中,服务器监控是绕不开的...
星哥带你玩飞牛NAS-11:咪咕视频订阅部署全攻略

星哥带你玩飞牛NAS-11:咪咕视频订阅部署全攻略

星哥带你玩飞牛 NAS-11:咪咕视频订阅部署全攻略 前言 在家庭影音系统里,NAS 不仅是存储中心,更是内容...

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

一言一句话
-「
手气不错
颠覆 AI 开发效率!开源工具一站式管控 30+大模型ApiKey,秘钥付费+负载均衡全搞定

颠覆 AI 开发效率!开源工具一站式管控 30+大模型ApiKey,秘钥付费+负载均衡全搞定

  颠覆 AI 开发效率!开源工具一站式管控 30+ 大模型 ApiKey,秘钥付费 + 负载均衡全...
4盘位、4K输出、J3455、遥控,NAS硬件入门性价比之王

4盘位、4K输出、J3455、遥控,NAS硬件入门性价比之王

  4 盘位、4K 输出、J3455、遥控,NAS 硬件入门性价比之王 开篇 在 NAS 市场中,威...
星哥带你玩飞牛NAS硬件03:五盘位+N5105+双网口的成品NAS值得入手吗

星哥带你玩飞牛NAS硬件03:五盘位+N5105+双网口的成品NAS值得入手吗

星哥带你玩飞牛 NAS 硬件 03:五盘位 +N5105+ 双网口的成品 NAS 值得入手吗 前言 大家好,我...
还在找免费服务器?无广告免费主机,新手也能轻松上手!

还在找免费服务器?无广告免费主机,新手也能轻松上手!

还在找免费服务器?无广告免费主机,新手也能轻松上手! 前言 对于个人开发者、建站新手或是想搭建测试站点的从业者...
星哥带你玩飞牛NAS-16:不再错过公众号更新,飞牛NAS搭建RSS

星哥带你玩飞牛NAS-16:不再错过公众号更新,飞牛NAS搭建RSS

  星哥带你玩飞牛 NAS-16:不再错过公众号更新,飞牛 NAS 搭建 RSS 对于经常关注多个微...