Quote:
|
There are many ways to create the snort database.
|
For MySQL:
Code:
cd /root/snorttemp/schemas
Code:
mysql -u MASTERUSER -pMASTERPASSWORD
Code:
mysql>create database snortdb;
Code:
mysql>source create_mysql;
Code:
mysql>grant all on snortdb.* to snortuser@localhost identified by 'snortpassword';
That will use the installed sql file to populate the default 'snortdb' database and add the proper permissions for the 'snortuser' of your choice with the 'snortpassword' of your choice.
FYI.