Ghost Blog 使用的数据库是SQLite 或 MySQL,因此在使用 Ghost Blog 之前,需要配置数据库连接信息。以下是在 Ghost Blog 中配置数据库的步骤:
- 打开 Ghost Blog 的配置文件 Ghost Blog 的配置文件位于 Ghost Blog 的根目录下的
config.production.json
文件中。可以使用以下命令打开该文件:
sudo nano /var/www/ghost/config.production.json
- 配置数据库连接信息 在
config.production.json
文件中,可以找到以下配置项:
"database": { "client": "mysql", "connection": { "host": "127.0.0.1", "user": "ghost", "password": "your_password", "database": "ghost", "charset": "utf8" } }
根据实际情况,修改 client
、host
、user
、password
和 database
等参数,以正确连接到 MySQL 数据库。如果使用的是 SQLite 数据库,则需要修改 client
为 sqlite3
,并设置 connection
为 SQLite 数据库文件的路径,例如:
"database": { "client": "sqlite3", "connection": { "filename": "/var/www/ghost/content/data/ghost.db" }, "useNullAsDefault": true }
- 保存并关闭文件 修改完成后,使用
Ctrl + X
快捷键,然后按Y
键保存修改并关闭文件。 以上就是在 Ghost Blog 中配置数据库连接信息的步骤。 - 配置完成后,可以使用 Ghost-CLI 工具在 Ghost Blog 中创建数据库表。使用以下命令创建数据库表:
cd /var/www/ghost sudo ghost setup
按照提示输入管理员账户信息,即可完成数据库表的创建。
评论