Hi I am a newbe to Linux and CLI stuff and am tring to install zabbix. I have ran yum and installed all the correct packages I now am up to setting up mysql. Sorry for been so dumb but what what user name do i need to put in the <username> box as I have tried all user accounts and get the access denied.
mysql -u<username> -p<password>
>create database zabbix;
>quit;
cd create/mysql
cat schema.sql |mysql -u<username> -p<password> zabbix
cd ../data
cat data.sql |mysql -u<username> -p<password> zabbix
mysql -u<username> -p<password>
>create database zabbix;
>quit;
cd create/mysql
cat schema.sql |mysql -u<username> -p<password> zabbix
cd ../data
cat data.sql |mysql -u<username> -p<password> zabbix
Comment