liunx-centos5.6-apache-x86部署php-CodeIgniter_2.1.4提示无法连接数据库


请输入图片描述


 AcceptPathInfo On
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f  
RewriteCond %{REQUEST_FILENAME} !-d  
RewriteRule ^(.*)$ index.php/$1 [L]
RewriteRule ^(.*).html $1 [L]   L]

要目录下的.htaccess

config/database.php也是看了又看肯定是没错的了,oncache也关了。
文件名和class名也统统是小写的了,今天上去一看提示无法连接数据库
麻烦帮我看看,谢谢!


 $active_group = 'default';
$active_record = TRUE;

$db['default']['hostname'] = '107.160.184.127';
$db['default']['username'] = 'root';
$db['default']['password'] = 'abc136268';
$db['default']['database'] = 'jyz';
$db['default']['dbdriver'] = 'mysql';
$db['default']['dbprefix'] = '';
$db['default']['pconnect'] = FALSE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = '';
$db['default']['char_set'] = 'utf8';
$db['default']['dbcollat'] = 'utf8_general_ci';
$db['default']['swap_pre'] = '';
$db['default']['autoinit'] = TRUE;
$db['default']['stricton'] = FALSE;


<?php
if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class my_model extends CI_Model
{
    public function __construct()
    {
        parent::__construct();
        $this->load->database('default');
    }
}

请输入图片描述

Linux php centos

Hachii☆ 11 years ago

建议 hostname 使用 localhost。

另外服务器上数据库是否安装成功?是否启动?
你可以在 cmd / termanal (进你的网站直接出来phpinfo,是Linux系统) 里面输入:


 mysql -uroot -pabc136268

测试用这个用户名和密码能不能连接上。

中国杯具帝 answered 11 years ago

Your Answer