Remove Test Database; Remove Local Anonymous Users; Remove Remote Anonymous Users - McAfee M4050 - Network Security Platform Troubleshooting Manual

Troubleshooting guide
Hide thumbs Also See for M4050 - Network Security Platform:
Table of Contents

Advertisement

McAfee® Network Security Platform 6.0

Remove test database

Remove the 'test" database from the server.
1. Start My SQL.
2. Backup db table to do
dbbackup before changing it.
3. Validate that the backup table
was created and row count
matches that of the mysql.db table.
4. Check all the databases on the
Manager server.
5. Remove the test db, Keep only
the MYSQL and Network Security
Platform (for example, lf)
databases.
6. You should see only two
databases (MYSQL and LF) if you
are using the default Network
Security Platform installation of
MySQL.

Remove local anonymous users

To remove local anonymous users:
1. Look for blank entries for user.
2. Remove anonymous access to databases
3. Remove anonymous/blank accounts
4. Validate that "localhost" replaced % entry
under the host column. You will also notice
you will now need to qualify username and
password on the local machine to get into
mysql shell from the mysql.exe CLI.

Remove remote anonymous users

To remove remote anonymous users, you harden mysql.exe CLI access by forcing the
requirement for a username and password to get into the mysql shell as follows.
Hardening the Manager Server for Windows 2003
mysql> use mysql;
mysql> create table db_backup as
select * from db;
mysql> select count(*) from
db_backup;
mysql> show databases;
mysql> drop database test;
mysql> show databases;
mysql> select host,db,user from db;
mysql> update db set
host="localhost" where user="";
mysql> flush privileges;
7

Advertisement

Table of Contents
loading

This manual is also suitable for:

Network security platform 6.0

Table of Contents