标签:mys command efi sea 解压缩 oca 配置 and mysq
1.用yum安装软件
yum -y install mysql*
一定要记得,使用yum install命令安装mysql时,需要多加一个通配符"*",
yum search mariadb 查看依赖包
rpm命令是RPM软件包的管理工具
rpm -qa mariadb 查看软件安装的
用yum删除软件包命令:yum remove ~
2.configure 安装
configure --help|grep mysql 查看帮助
//1.解压缩
tar -zxf nagios-4.0.2.tar.gz
//2.进入目录
cd nagios-4.0.2
//3.配置
./configure --prefix=/usr/local/nagios -with=mysql=mysqld -enble
//4.编译 或者直接 make && make install
make all
//5.安装
make install && make install-init && make install-commandmode && make install-config
whereis命令只能用于程序名的搜索,而且只搜索二进制文件,可以查看软件安装位置
标签:mys command efi sea 解压缩 oca 配置 and mysq
原文地址:http://www.cnblogs.com/microtiger/p/7655652.html