nagios和DELL OMSA配合可以实现对dell 服务器硬件的监控 ,OMSA是Openmanage Server Administrator 的缩写 。OMSA由以下几个组件组成: 1srvadmin-base: Install only base OMSA, no web server 2srvadmin-webserver: Install Web Interface 3srvadmin-storageservices: Install RAID Management 4srvadmin-rac4: Install components to manage the Dell Remote Access Card 4 5srvadmin-rac5: Install components to manage the Dell Remote Access Card 5 以上组件可以根据需要单独装,也可以通过安装srvadmin-al……
mongodb是目前最流行的nosql数据库,其自身也提供了备份与恢复命令 。具体程序为mongodump和mongorestore 。 一、mongodump备份 mongodump的具体用法可以查看帮助: 1[root@web20 ~]# /App/mongodb/bin/mongodump -h 2ERROR: required parameter is missing in 'host' 3Export MongoDB data to BSON files. 4options: 5 --help produce help message 6 -v [ --verbose ] be more verbose (include multiple times for more 7 verbosity e.g. -vvvvv)……
当用mysqldump导出数据库时有时会出现问题,例如以下命令执行时: 1mysqldump -uroot -pPasswd DBName >/home/www/DB_Backup.sql 出错,显示: 1Got error: 1449: The user specified as a definer ('test'@'192.168.1.%') does not exist when using LOCK TABLES 其实上面的报错信息中已经说的很明白了,就是test用户没有lock tables的权限 ,对该用户增加 lock tables的权限就行了。 1mysql> GRANT select, lock tables ON dbname.* TO 'test'@'192.168.1.%' 2mysql> flush privileges; 再重……