Redhat EL 5.3上安装Cacti(1)- 编译安装Apache、MySQL

Redhat EL 5.3 上安装 Cacti(1)- 编译 安装 Apache MySQL
Linux 下安装 Cacti 实现网络监控
由于博客字符 8 万限制,所以分开 5 部分上传!
请看 Redhat EL 5.3 上安装 Cacti(1-5)
本文只介绍 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 访问http://ip/ 出现 ”It works!” ,说明 apache 安装成功。
开始安装 mysql
# wget http://download.mysql.cn/download_file/gz/5.0/mysql-5.0.22.tar.gz
# 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 �Cg 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 �Cu root �Cp password 'rootpw'       // 设置密码为 rootpw
Enter password:                 // 默认密码为空,所以直接回车
# /usr/local/mysql/bin/mysql �Cu root �Cp
Enter password:                 // 输入新密码后,登录成功
mysql 安装配置完毕。

你可能感兴趣的:(mysql,数据库,职场,休闲)