如何访问 liferays 数据库
我需要通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
开始使用自定义数据库。假设将所有内容都存储在 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!
我将描述 MySQL 数据库的安装。
首先,您应该从官方网站下载该数据库:
http://dev.mysql.com/downloads/< /a>
您应该在 liferay 文件夹中创建(或更改现有的)文件“proper-ext.properties”。删除该文件中的所有文本并粘贴以下内容:
此外,您还必须创建新用户(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:
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 entermysql -u root -p
.Good luck!
默认使用 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