Chinaunix首页 | 论坛 | 博客
  • 博客访问: 297368
  • 博文数量: 87
  • 博客积分: 1206
  • 博客等级: 少尉
  • 技术积分: 725
  • 用 户 组: 普通用户
  • 注册时间: 2010-08-16 00:12
个人简介

do the right things the right ways

文章分类

全部博文(87)

文章存档

2017年(5)

2016年(6)

2015年(1)

2012年(11)

2011年(64)

分类: LINUX

2011-12-13 10:01:57

1. 删除/var/www/html/sites/default/ 下的settings.php 文档,并常见同名的文件并改为write权限;

2. 如果Mysqld daemon[服务]没有启动,启动这个服务;

3. 在创建数据库之前,因为postgreSQL/MySQL 为安全考虑,不允许root用户运行,所以必须给他们建立对应的用户
    $su - postgres   or   $su - mysql 然后进入/var/lib/pgsql/ or /var/lib/mysql directory
3. 开始创建dababase/user/userpwd ;
    创建用户名和数据库:mysqladmin -u username -p create databasename;MySQL will prompt for the 'username' database password and then initial database files. Next you must login and set the access database rights:
    mysql -u username -p 
Again, you will be asked for the 'username' database password. At the MySQL prompt, enter follwing command:

  GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER
  ON databasename.*
  TO 'username'@'localhost' IDENTIFIED BY 'password';

where

 'databasename' is the name of your database
 'username@localhost' is the username of your MySQL account
 'password' is the password required for that username

Note: Unless your database user has all of the privileges listed above, you will
not be able to run Drupal.

If successful, MySQL will reply with:

  Query OK, 0 rows affected



阅读(1204) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~