版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。
本文只介绍RedHat Enterprise Linux 5.3上Cacti环境的安装方法及安装过程中遇到的错误解决方法。
很多内容可能网络上好多朋友已经写过了,我只不过把我安装时的一些细节和遇到的出现错误的地方记录下来总结!希望对其他想安装的朋友有用!累死我了,不过现在安装一次的时间大大缩短了!哈哈~~
开始安装:
本文中所用到的软件下载地址如果不能使用了,可以自己上google/baidu搜索个链接!目前应该都好用,因为我才用过。安装时,注意你的安装目录。
第一部分:编译安装Apache、MySQL
# wget ftp://ftp.ru/pub/sunfreeware/SOURCES/httpd-2.2.6.tar.gz
# tar zxvf httpd-2.2.6.tar.gz
# cd httpd-2.2.6
# ./configure --prefix=/usr/local/apache22 --enable-module=so --with-mpm=worker --enable-module=rewrite
# make && make install
启动apache:
# /usr/local/apache22/bin/apachectl start
IE访问出现”It works!”,说明apache安装成功。
开始安装mysql:
# wget
# tar zxvf mysql-5.0.22.tar.gz
# cd mysql-5.0.22
# ./configure --prefix=/usr/local/mysql --localstatedir=/usr/local/mysql/data/ --without-innodb --without-debug --with-extra-charsets=gbk --with-extra-charsets=all --enable-assembler --with-pthread --enable-thread-safe-client --with-client-ldflags=-all-static
配置成功出现“Thank you for choosing MySQL!”提示。
# make && make install //这步大概要10分钟左右吧,漫长啊。。。
Mysql配置
# cp ./support-files/mysql.server /etc/init.d/mysql
# groupadd mysql
# useradd –g mysql mysql
# chmod 777 /etc/init.d/mysql
# /usr/local/mysql/bin/mysql_install_db
# chown -R mysql:mysql /usr/local/mysql/data/
启动Mysql
# service mysql start
# /usr/local/mysql/bin/mysqladmin –u root –p password 'rootpw' //设置密码为rootpw
Enter password: //默认密码为空,所以直接回车
# /usr/local/mysql/bin/mysql –u root –p
Enter password: //输入新密码后,登录成功
mysql安装配置完毕。