我正在尝试安装october cms,我目前正处于需要输入php artisan october:up
的最后一步,但是当我这样做时,我不断收到此错误:
[PDOException]
SQLSTATE[HY000] [2002] No such file or directory
我添加了这个:'default' => 'mysql', // Default database connection
到config / database.php文件。
这是文件:
<?php
return [
/*
|--------------------------------------------------------------------------
| PDO Fetch Style
|--------------------------------------------------------------------------
|
| By default, database results will be returned as instances of the PHP
| stdClass object; however, you may desire to retrieve records in an
| array format for simplicity. Here you can tweak the fetch style.
|
*/
'fetch' => PDO::FETCH_CLASS,
/*
|--------------------------------------------------------------------------
| Default Database Connection Name
|--------------------------------------------------------------------------
|
| Here you may specify which of the database connections below you wish
| to use as your default connection for all database work. Of course
| you may use many connections at once using the Database library.
|
*/
'default' => 'mysql',
/*
|--------------------------------------------------------------------------
| Database Connections
|--------------------------------------------------------------------------
|
| Here are each of the database connections setup for your application.
| Of course, examples of configuring each database platform that is
| supported by Laravel is shown below to make development simple.
|
|
| All database work in Laravel is done through the PHP PDO facilities
| so make sure you have the driver for your particular database of
| choice installed on your machine before you begin development.
|
*/
'connections' => [
'sqlite' => [
'driver' => 'sqlite',
'database' => 'storage/database.sqlite',
'prefix' => '',
],
'mysql' => [
'driver' => 'mysql',
'host' => 'localhost',
'port' => '',
'database' => 'database',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
],
'pgsql' => [
'driver' => 'pgsql',
'host' => 'localhost',
'port' => '',
'database' => 'database',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'prefix' => '',
'schema' => 'public',
],
'sqlsrv' => [
'driver' => 'sqlsrv',
'host' => 'localhost',
'port' => '',
'database' => 'database',
'username' => 'root',
'password' => '',
'prefix' => '',
],
],
/*
|--------------------------------------------------------------------------
| Migration Repository Table
|--------------------------------------------------------------------------
|
| This table keeps track of all the migrations that have already run for
| your application. Using this information, we can determine which of
| the migrations on disk have not actually be run in the databases.
|
*/
'migrations' => 'migrations',
/*
|--------------------------------------------------------------------------
| Redis Databases
|--------------------------------------------------------------------------
|
| Redis is an open source, fast, and advanced key-value store that also
| provides a richer set of commands than a typical key-value systems
| such as APC or Memcached. Laravel makes it easy to dig right in.
|
*/
'redis' => [
'cluster' => false,
'default' => [
'host' => '127.0.0.1',
'port' => 6379,
'database' => 0,
],
],
];
这些是关于如何在控制台中安装的所有指示
Console installation
The command-line interface (CLI) method of installation requires Composer to manage its dependencies.
Download the application source code by using create-project in your terminal. This will install to a directory called /myoctober:
composer create-project october/october myoctober dev-master
Once this task has finished, open the file config/database.php and set your database connection:
'default' => 'mysql', // Default database connection
Configure the connections section below it with the database credentials.
Next, run the CLI migration process, this will build the database tables:
php artisan october:up
You can sign in to the back-end area via the /backend route and using the default username admin and password admin.
You also may wish to inspect config/app.php and config/cms.php to change any optional configuration.
任何帮助将不胜感激!
答案 0 :(得分:1)
您还没有设置您的mysql配置。
目前它的价值是:
'mysql' => [
'driver' => 'mysql',
'host' => 'localhost',
'port' => '',
'database' => 'database',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
],
因此,PHP尝试使用默认套接字连接到mysql(在这种情况下,不存在,因此&#34;文件不存在&#34;错误来自PDO
)。如果您确实想要使用用户localhost
连接到root
并且没有密码,我建议您将端口号设置为3306
。