I'm attempting to install the MySQL binaries downloaded from
mysql's website for version 4.1.7 on my desktop machine.
All steps have been performed as root.
The mysql user and group have been created
I've untarred and unzipped the downloaded file.
I've run
Code:
ln -s /usr/local/mysql-standard-4.1.7-pc-linux-i686 mysql
I've run
Code:
chown -R mysql:mysql */*
So we're ready to install. Here we go!
Code:
dthacker:/usr/local/mysql # ./scripts/mysql_install_db --user mysql
Installing all prepared tables
Unknown table type:
Installation of system tables failed!
Examine the logs in ./data for more information.
You can also try to start the mysqld daemon with:
./bin/mysqld --skip-grant &
You can use the command line tool
./bin/mysql to connect to the mysql
database and look at the grant tables:
BOOM! Unfortunately, no logs are being written. Any ideas would be welcome!
TIA
DT