here I’ve created the database
mysql> CREATE DATABASE wordpress;
Query OK, 1 row affected (0.00 sec)
here I’ve enabled use of the database
mysql> USE wordpress
Database changed
here I created an account, and gave it access to the entire database wordpress
mysql> GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP
-> ON wordpress.*
-> TO ‘user’@’localhost’
-> IDENTIFIED BY ‘password’;
Query OK, 0 rows affected (0.00 sec)
here I test the login, from the localhost
bash$ mysql -u user -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 6 to server version: 4.1.13
Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the buffer.
so… at this point mysqld is running, and the user has access to the database.
I also ran some simple tests to verify that everything had been created properly
for example:
mysqlshow -p
– to see the databases
mysql -e “SELECT Host, Db,User FROM db” mysql -p
– to see the database association with an account
all this data cooresponded appropriately with the above….
the only thing I can think of is….
“table_prefix”
does “wp_” have to be created manually?
does wordpress not create this?
If I install mysqladmin… do you think it will solve my problem? Or is there some other issue at hand here?
I’ve configured alot of databases manually… but never outside of a win32 environment. So I am new at configuring mysql on *nix, but with mysql it should be the same cross platform yes?