简单记录使用的工具,对于使用哪个工具的批判标准是:
只要符合你的某个程度上的需要,就是说只要满足你需要的批判标准,获取到对应的数据,就不必再纠结于使用什么样的工具了.
Cacti
sudo apt-get install cacti
中间会下载mysql,tomcat,apache等辅助的软件,下吧.不过貌似这些工具都是这样的.
cacti使用的画图工具时rrdtools.
安装过程中会让你输入mysql数据库中的root的密码,还会让你输入administrator的密码等.设置的合理一点是常用的密码****gamma.
最后是:
http://10.13.8.27/cacti
可以通过这个地址访问对应的cacti安装程序,这个是一个apache的内容.
查看监听的地址:
hibernatesone@hibernatesone-laptop:/etc/apache2/conf.d$ netstat -lt --numeric-host
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:sunrpc 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:www 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:ftp 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:ssh 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:ipp 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:12865 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:mysql 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:11211 0.0.0.0:* LISTEN
tcp6 0 0 :::http-alt :::* LISTEN
tcp6 0 0 :::ssh :::* LISTEN
tcp6 0 0 ::1:ipp :::* LISTEN
tcp6 0 0 127.0.0.1:8005 :::* LISTEN
hibernatesone@hibernatesone-laptop:/etc/apache2/conf.d$ netstat -lt --numeric-ports
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:12865 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:11211 0.0.0.0:* LISTEN
tcp6 0 0 :::8080 :::* LISTEN
tcp6 0 0 :::22 :::* LISTEN
tcp6 0 0 ::1:631 :::* LISTEN
tcp6 0 0 127.0.0.1:8005 :::* LISTEN
hibernatesone@hibernatesone-laptop:/etc/apache2/conf.d$
80的是一个apache的启动内容,而8080是一个tomcat的启动程序.
再看看apache的启动内容:
hibernatesone@hibernatesone-laptop:/etc/apache2/conf.d$ ps -aef | grep apache
tomcat6 937 1 0 19:22 ? 00:00:05 /usr/lib/jvm/java-6-openjdk/bin/java -Djava.util.logging.config.file=/var/lib/tomcat6/conf/logging.properties -Djava.awt.headless=true -Xmx128M -XX:+UseConcMarkSweepGC -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.endorsed.dirs=/usr/share/tomcat6/endorsed -classpath /usr/share/tomcat6/bin/bootstrap.jar -Dcatalina.base=/var/lib/tomcat6 -Dcatalina.home=/usr/share/tomcat6 -Djava.io.tmpdir=/tmp/tomcat6-tmp org.apache.catalina.startup.Bootstrap start
root 3147 1 0 19:28 ? 00:00:00 /usr/sbin/apache2 -k start
www-data 3955 3147 0 19:30 ? 00:00:00 /usr/sbin/apache2 -k start
www-data 3956 3147 0 19:30 ? 00:00:00 /usr/sbin/apache2 -k start
www-data 3958 3147 0 19:30 ? 00:00:00 /usr/sbin/apache2 -k start
www-data 4089 3147 0 19:37 ? 00:00:00 /usr/sbin/apache2 -k start
www-data 4117 3147 0 19:38 ? 00:00:00 /usr/sbin/apache2 -k start
www-data 4119 3147 0 19:38 ? 00:00:01 /usr/sbin/apache2 -k start
www-data 4120 3147 0 19:38 ? 00:00:00 /usr/sbin/apache2 -k start
www-data 4121 3147 0 19:38 ? 00:00:00 /usr/sbin/apache2 -k start
www-data 4221 3147 0 19:40 ? 00:00:00 /usr/sbin/apache2 -k start
www-data 4254 3147 0 19:41 ? 00:00:00 /usr/sbin/apache2 -k start
其中一个是tomcat6的,另一个是apache2的.
hibernatesone@hibernatesone-laptop:/etc/apache2$ whereis apache2
apache2: /usr/sbin/apache2 /etc/apache2 /usr/lib/apache2 /usr/share/apache2 /usr/share/man/man8/apache2.8.gz
apache2的配置文件一般在/etc/apache2中.
进入详细的看看.
发现还有一个conf.d目录,其中内容如下:
/etc/apache2/conf.d
hibernatesone@hibernatesone-laptop:/etc/apache2$ ls conf.d/
cacti.conf charset localized-error-pages security
发现了cacti.conf文件内容了...
Alias /cacti /usr/share/cacti/site
Options +FollowSymLinks
AllowOverride None
order allow,deny
allow from all
AddType application/x-httpd-php .php
php_flag magic_quotes_gpc Off
php_flag short_open_tag On
php_flag register_globals Off
php_flag register_argc_argv On
php_flag track_vars On
# this setting is necessary for some locales
php_value mbstring.func_overload 0
php_value include_path .
DirectoryIndex index.php
cacti的内容配置是:
Alias /cacti /usr/share/cacti/site
这个说明了为什么能够使用上面的url进行访问了,这里定义了apache的/cacti 的别名.OK.
看看site中的内容:
hibernatesone@hibernatesone-laptop:/usr/share/cacti/site$ ls
about.php data_queries.php graph_settings.php graph_view.php install rra.php user_admin.php
auth_changepassword.php data_sources.php graphs_items.php graph_xport.php lib scripts utilities.php
auth_login.php data_templates.php graphs_new.php host.php logout.php script_server.php
cdef.php docs graphs.php host_templates.php poller_commands.php settings.php
cmd.php gprint_presets.php graph_templates_inputs.php images poller_export.php templates_export.php
color.php graph_image.php graph_templates_items.php include poller.php templates_import.php
data_input.php graph.php graph_templates.php index.php resource tree.php
基本上就确认了cacti是用的内容了.
看看cacti中阐述的:
Cacti requires MySQL, PHP, RRDTool, net-snmp, and a webserver that supports PHP such as Apache or IIS. Please see the requirements section of the manual for information on how to fulfill these requirements under certain operating systems. Please use the install guide for either Unix or Windows for information about installing Cacti.
对于tomcat6,先不用管它....apt-get install也是一个不爽的事情,动不动就给你启动...一时还没去想好方法...
使用http://10.13.8.27/cacti能够直接定位到install步骤,会让你输入一些密码的,简单的来,以后可以修改的....
cacti的默认登录账号是:
admin
admin
千万别设置的连你自己都会忘记的密码.
好了.
http://10.13.8.27/cacti/index.php
已经能够访问了...
http://10.13.8.27/cacti/graph_view.php?action=tree&tree_id=1&leaf_id=7&select_first=true
2.对于Munin,可以参考这个:
http://www.iteye.com/topic/539319
http://munin-monitoring.org/wiki/LinuxInstallation
http://munin-monitoring.org/wiki
只要符合你的某个程度上的需要,就是说只要满足你需要的批判标准,获取到对应的数据,就不必再纠结于使用什么样的工具了.
Cacti
sudo apt-get install cacti
中间会下载mysql,tomcat,apache等辅助的软件,下吧.不过貌似这些工具都是这样的.
cacti使用的画图工具时rrdtools.
安装过程中会让你输入mysql数据库中的root的密码,还会让你输入administrator的密码等.设置的合理一点是常用的密码****gamma.
最后是:
http://10.13.8.27/cacti
可以通过这个地址访问对应的cacti安装程序,这个是一个apache的内容.
查看监听的地址:
hibernatesone@hibernatesone-laptop:/etc/apache2/conf.d$ netstat -lt --numeric-host
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:sunrpc 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:www 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:ftp 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:ssh 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:ipp 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:12865 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:mysql 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:11211 0.0.0.0:* LISTEN
tcp6 0 0 :::http-alt :::* LISTEN
tcp6 0 0 :::ssh :::* LISTEN
tcp6 0 0 ::1:ipp :::* LISTEN
tcp6 0 0 127.0.0.1:8005 :::* LISTEN
hibernatesone@hibernatesone-laptop:/etc/apache2/conf.d$ netstat -lt --numeric-ports
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:12865 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:11211 0.0.0.0:* LISTEN
tcp6 0 0 :::8080 :::* LISTEN
tcp6 0 0 :::22 :::* LISTEN
tcp6 0 0 ::1:631 :::* LISTEN
tcp6 0 0 127.0.0.1:8005 :::* LISTEN
hibernatesone@hibernatesone-laptop:/etc/apache2/conf.d$
80的是一个apache的启动内容,而8080是一个tomcat的启动程序.
再看看apache的启动内容:
hibernatesone@hibernatesone-laptop:/etc/apache2/conf.d$ ps -aef | grep apache
tomcat6 937 1 0 19:22 ? 00:00:05 /usr/lib/jvm/java-6-openjdk/bin/java -Djava.util.logging.config.file=/var/lib/tomcat6/conf/logging.properties -Djava.awt.headless=true -Xmx128M -XX:+UseConcMarkSweepGC -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.endorsed.dirs=/usr/share/tomcat6/endorsed -classpath /usr/share/tomcat6/bin/bootstrap.jar -Dcatalina.base=/var/lib/tomcat6 -Dcatalina.home=/usr/share/tomcat6 -Djava.io.tmpdir=/tmp/tomcat6-tmp org.apache.catalina.startup.Bootstrap start
root 3147 1 0 19:28 ? 00:00:00 /usr/sbin/apache2 -k start
www-data 3955 3147 0 19:30 ? 00:00:00 /usr/sbin/apache2 -k start
www-data 3956 3147 0 19:30 ? 00:00:00 /usr/sbin/apache2 -k start
www-data 3958 3147 0 19:30 ? 00:00:00 /usr/sbin/apache2 -k start
www-data 4089 3147 0 19:37 ? 00:00:00 /usr/sbin/apache2 -k start
www-data 4117 3147 0 19:38 ? 00:00:00 /usr/sbin/apache2 -k start
www-data 4119 3147 0 19:38 ? 00:00:01 /usr/sbin/apache2 -k start
www-data 4120 3147 0 19:38 ? 00:00:00 /usr/sbin/apache2 -k start
www-data 4121 3147 0 19:38 ? 00:00:00 /usr/sbin/apache2 -k start
www-data 4221 3147 0 19:40 ? 00:00:00 /usr/sbin/apache2 -k start
www-data 4254 3147 0 19:41 ? 00:00:00 /usr/sbin/apache2 -k start
其中一个是tomcat6的,另一个是apache2的.
hibernatesone@hibernatesone-laptop:/etc/apache2$ whereis apache2
apache2: /usr/sbin/apache2 /etc/apache2 /usr/lib/apache2 /usr/share/apache2 /usr/share/man/man8/apache2.8.gz
apache2的配置文件一般在/etc/apache2中.
进入详细的看看.
发现还有一个conf.d目录,其中内容如下:
/etc/apache2/conf.d
hibernatesone@hibernatesone-laptop:/etc/apache2$ ls conf.d/
cacti.conf charset localized-error-pages security
发现了cacti.conf文件内容了...
Alias /cacti /usr/share/cacti/site
Options +FollowSymLinks
AllowOverride None
order allow,deny
allow from all
AddType application/x-httpd-php .php
php_flag magic_quotes_gpc Off
php_flag short_open_tag On
php_flag register_globals Off
php_flag register_argc_argv On
php_flag track_vars On
# this setting is necessary for some locales
php_value mbstring.func_overload 0
php_value include_path .
DirectoryIndex index.php
cacti的内容配置是:
Alias /cacti /usr/share/cacti/site
这个说明了为什么能够使用上面的url进行访问了,这里定义了apache的/cacti 的别名.OK.
看看site中的内容:
hibernatesone@hibernatesone-laptop:/usr/share/cacti/site$ ls
about.php data_queries.php graph_settings.php graph_view.php install rra.php user_admin.php
auth_changepassword.php data_sources.php graphs_items.php graph_xport.php lib scripts utilities.php
auth_login.php data_templates.php graphs_new.php host.php logout.php script_server.php
cdef.php docs graphs.php host_templates.php poller_commands.php settings.php
cmd.php gprint_presets.php graph_templates_inputs.php images poller_export.php templates_export.php
color.php graph_image.php graph_templates_items.php include poller.php templates_import.php
data_input.php graph.php graph_templates.php index.php resource tree.php
基本上就确认了cacti是用的内容了.
看看cacti中阐述的:
Cacti requires MySQL, PHP, RRDTool, net-snmp, and a webserver that supports PHP such as Apache or IIS. Please see the requirements section of the manual for information on how to fulfill these requirements under certain operating systems. Please use the install guide for either Unix or Windows for information about installing Cacti.
对于tomcat6,先不用管它....apt-get install也是一个不爽的事情,动不动就给你启动...一时还没去想好方法...
使用http://10.13.8.27/cacti能够直接定位到install步骤,会让你输入一些密码的,简单的来,以后可以修改的....
cacti的默认登录账号是:
admin
admin
千万别设置的连你自己都会忘记的密码.
好了.
http://10.13.8.27/cacti/index.php
已经能够访问了...
http://10.13.8.27/cacti/graph_view.php?action=tree&tree_id=1&leaf_id=7&select_first=true
2.对于Munin,可以参考这个:
http://www.iteye.com/topic/539319
http://munin-monitoring.org/wiki/LinuxInstallation
http://munin-monitoring.org/wiki
相关推荐
在文件“VMware View容量规划工具 2.0.xlsm”中,你可能会找到以下内容: - 输入参数表:用于输入环境信息,如服务器规格、存储性能、网络带宽和预期用户数。 - 模型计算:包含公式和逻辑,用于根据输入数据进行...
vmware view容量规划工具 提供view桌面虚拟化容量的具体计算
Exchange 2007容量规划工具,包括服务器的数量,CPU,内存,硬盘灯
物流云平台的容量规划建模及其实现是物流行业中应对业务量剧增,尤其是网购、促销等高峰期压力的重要策略。随着移动互联网技术的迅速发展,物流公司的业务需求呈现出爆炸式增长,这使得物流云平台必须具备高效能和...
本文将详细解析"LTE邻区规划工具"及其相关知识点,结合描述和标签,我们将深入理解2G、3G邻区在LTE网络中的作用,以及如何通过华为的LTE外部脚本添加工具进行有效规划。 首先,我们要了解邻区的概念。在无线通信中...
### 阿里线上压测与容量规划实践 #### 一、线上压测与容量规划的概念 线上压测与容量规划是指通过对线上生产环境进行压力测试,并基于测试结果来优化和调整系统的资源配置,确保系统在面对高并发访问时能够稳定...
该工具将尝试成为容量规划工具。 可以从http://zelionix.ddns.net/获得SVN版本的演示,该演示根据代理收集的KPI(CPU,内存,卷)进行绘制。 通过夜间收集,加载,分析处理来警告和严重级别。此工具旨在检查您的基础...
3. 数据备份规划:在进行重要数据备份前,检测磁盘容量有助于判断是否有足够的空间保存备份文件。 4. IT管理:对于企业IT管理员,批量检测多台计算机的磁盘容量,便于统一管理和优化存储资源。 5. 教育与学习:...
总的来说,【fdisk大容量硬盘分区工具】是系统管理员和IT专业人员日常工作中不可或缺的工具之一,它提供了一种高效、灵活的方式来管理和组织硬盘空间,适应了现代计算机存储需求的增长。正确使用此工具,可以提升...
在IT行业中,容量规划是一项至关重要的任务,尤其是在电商领域,特别是在大促期间。"容量规划.zip"这个压缩包文件包含了三份文档,分别探讨了不同的主题,这些主题都是围绕着性能优化和系统准备的核心概念展开的。让...
在GSM网络规划中,小区容量的计算是至关重要的环节,它直接影响到网络服务质量,如通话质量、数据传输速率以及网络的覆盖范围。`ERLB Calcurator.exe`可能是一个专门用于计算GSM小区容量的软件工具。 首先,我们要...
【软件性能测试之容量测试与...总之,软件性能测试中的容量测试与容量规划是确保系统稳定、高效运行的关键工具,它们通过对系统容量的准确评估和科学规划,帮助企业节省成本,提升服务质量,以适应不断变化的业务需求。
VMware+View容量规划工具+2.0.xlsm VMware+View+5.0+VS+Citrix+XenDesktop+5.5.pdf vmware+horizon+workspace安装与配置.pdf Horizon+View+5.2++ConnectionServer证书配.pdf Horizon_View52快速部署手册.pdf Horizon...
这款软件集成了多种功能,如规划PCI(Physical Cell ID)、设置邻区关系、调整TAC(Tracking Area Code)以及配置PRACH(Physical Random Access Channel)根索引,旨在提升网络覆盖、容量和用户通信体验。...
四、容量规划工具和技术 现代IT环境中,有许多工具和技术可以帮助进行容量规划,例如: 1. 性能监控工具:如Nagios、Zabbix等,用于实时监测系统资源使用情况。 2. 负载测试工具:如JMeter、LoadRunner等,模拟大量...
1. **MAP - 微软评估和规划工具包**:这个工具用于评估现有IT环境,帮助规划迁移至Azure的过程,同时提供资源需求的估计,确保在迁移到云后有足够的计算、存储和网络资源。 2. **Azure 容量规划**:Azure 提供了...
容器云平台容量规划及管理是现代企业IT架构中不可或缺的一部分,尤其在互联网行业中,高效、灵活的资源分配和管理能够显著提升服务质量和经济效益。本文主要探讨了如何优化容器云平台的容量规划,以及如何从用户体验...
标题中的“PE下硬盘容量分区工具”指的是在预安装环境(Preinstallation Environment,简称PE)中使用的用于管理和调整硬盘分区的软件工具。PE通常是指Windows PE,它是一个轻量级的Windows操作系统,常用于系统安装...