question?

carlos123

Verified User
Joined
May 4, 2007
Messages
19
Hi, i'm new on linux system. I need some help on the mysql database where are the share file on phpmyadmin.
I'm looking for directory so i can upload a database larger the default setting.
where i can find this folder does anyone know.:o
 
phpMyadmin is installed to /var/www/html/phpMyAdmin if looking phpmyadmin config file.
 
upload the .sql file or the file with queries to the server and as the user(root), you can run the mysql command to import the database

eg

Code:
#mysql -uxxx -pyyyy DBNAME < file.sql
 
/var/lib/mysql/<DATABASE_NAME>

But the files in this folder are generally in a format that only MySql would undrestand, so I would suggest you to import the sql statements from the command line.

U can check phpmyadmin to see where it uploads the uploaded files and then check the file it executes to run it!!!!!!!
 
Back
Top