如何访问 liferays 数据库

发布于 2024-11-25 22:26:05 字数 55 浏览 1 评论 0原文

我需要通过 sql 访问本地 liferays 数据库。如何打开该数据库的 sql 命令提示符?

I need to access my local liferays database via sql. How do I open a sql command prompt to this database?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

瘫痪情歌 2024-12-02 22:26:05

开始使用自定义数据库。假设将所有内容都存储在 Mysql 数据库中,您就可以使用所有可用于浏览该数据库的工具。我认为Mysql有很多好的工具,这样你就能得到你想要的——轻松且没有太多痛苦!

Start to use a custom database. Having all in a let's say Mysql database allows you to use all tools available for browsing that database. I think there exists many good tools for Mysql and that way you'll get what you want - easily and without much pain!

◇流星雨 2024-12-02 22:26:05

我将描述 MySQL 数据库的安装。

首先,您应该从官方网站下载该数据库:

http://dev.mysql.com/downloads/< /a>

您应该在 liferay 文件夹中创建(或更改现有的)文件“proper-ext.properties”。删除该文件中的所有文本并粘贴以下内容:

jdbc.default.driverClassName=com.mysql.jdbc.Driver
jdbc.default.url=jdbc:mysql://localhost/lportal?useUnicode=true&characterEncoding=UTF-8&useFastDateParsing=false
jdbc.default.username=root
jdbc.default.password=admin

此外,您还必须创建新用户(root、admin)和新数据库并将其命名为“lportal”(创建数据库 lportal)。

之后,您应该打开命令行并输入 mysqld --console 。然后你应该打开另一个命令行并输入mysql -u root -p

祝你好运!

I'll describe MySQL database installation.

First of all, you should download that database from official website :

http://dev.mysql.com/downloads/

Than you should create (or change the existing one) file "proper-ext.properties" in your liferay folder. Delete all text in that file and paste this:

jdbc.default.driverClassName=com.mysql.jdbc.Driver
jdbc.default.url=jdbc:mysql://localhost/lportal?useUnicode=true&characterEncoding=UTF-8&useFastDateParsing=false
jdbc.default.username=root
jdbc.default.password=admin

Also you must create new user (root, admin) and new database and name it "lportal" (create database lportal).

After that, you should open you command line and enter mysqld --console. Then you should open another one command line and enter mysql -u root -p.

Good luck!

淡淡離愁欲言轉身 2024-12-02 22:26:05

默认使用 HSQL 数据库(http://hsqldb.org/)(也许有客户端可以连接到它)
数据存储在$LIFERAY_HOME\data\hsql中
如果您想要不同的数据库结帐:
http://www.liferay.com/community/wiki //wiki/Main/Database+Portal+Properties

Default a HSQL datbase is used (http://hsqldb.org/) (maybe there is aclient to connect to it)
Data is store in $LIFERAY_HOME\data\hsql
If you want a different db checkout:
http://www.liferay.com/community/wiki/-/wiki/Main/Database+Portal+Properties

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文