no pains no gains
发布时间:2016-05-12 15:23:50
1. web 访问404 forbidden 关闭selinux,iptables2.日志中如果有数据库错误 mysqlcheck -uroot -prootadmin -o -r cacti 自动修复指定的库,直到所有表显示 OK 3.手动执行测试: snmpwalk -t 5 -v 2c.........【阅读全文】
发布时间:2016-05-12 10:38:50
原来出现这个错误原因(httpd.exe: Could not reliably determine the server's fully qualified domain name, using 192.168.1.xx for ServerName)是因为DNS没配置好. 如果不想配置DNS, 就在httpd.conf , 在最前加入 ServerName localhost:80 即可其实这个问题,解决的方法就是补充中的一句话,修改httpd.con.........【阅读全文】
发布时间:2016-05-11 11:09:16
先设置该用户只有show database权限grant select,insert,update,delete on redmine1.* to jira@"%" identified by "jira"; 新增超级权限并允许远程访问: GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'192.168.1.3' IDENTIFIED BY 'mypassword' WITH GRANT OPTION; FL.........【阅读全文】
发布时间:2016-05-11 10:38:47
[root@localhost bin]# mysqlERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)运行mysql时提示如上错误,百度下是密码不匹配,试着删除重新安装依然无法解决。所以想初始化数据库的密码,方法如下。1.停止服务 service mysqld stop2.mysqld_safe --user=mysql --skip.........【阅读全文】
发布时间:2016-05-06 15:25:35
1.检查sendmail是否安装[root@localhost ~]# rpm -qa |grep sendmailsendmail-8.14.4-9.el6.x86_64[root@localhost ~]# which sendmail/usr/sbin/sendmail2.我使用的是163邮件,所以设置mail使用163代理发邮件只需要在? /etc/mail.rc?? 最后添加两行即可set from=getdata2016@163.com smtp=smtp.163.........【阅读全文】