source: sipes/cord/INSTALL.mysql.txt @ b9d4e2e

stableversion-3.0
Last change on this file since b9d4e2e was d7a822e, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio del cord

  • Propiedad mode establecida a 100755
File size: 1.2 KB
Línea 
1
2CREATE THE MySQL DATABASE
3--------------------------
4
5This step is only necessary if you don't already have a database set-up (e.g. by
6your host). In the following examples, 'username' is an example MySQL user which
7has the CREATE and GRANT privileges. Use the appropriate user name for your
8system.
9
10First, you must create a new database for your Drupal site (here, 'databasename'
11is the name of the new database):
12
13  mysqladmin -u username -p create databasename
14
15MySQL will prompt for the 'username' database password and then create the
16initial database files. Next you must login and set the access database rights:
17
18  mysql -u username -p
19
20Again, you will be asked for the 'username' database password. At the MySQL
21prompt, enter following command:
22
23  GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER,
24  CREATE TEMPORARY TABLES ON databasename.*
25  TO 'username'@'localhost' IDENTIFIED BY 'password';
26
27where
28
29 'databasename' is the name of your database
30 'username@localhost' is the username of your MySQL account
31 'password' is the password required for that username
32
33Note: Unless your database user has all of the privileges listed above, you will
34not be able to run Drupal.
35
36If successful, MySQL will reply with:
37
38  Query OK, 0 rows affected
39
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.