Connect phpMyAdmin with ejabberd server on ec2 ubuntu instance

心不动则不痛 提交于 2019-12-12 06:56:56

问题


i successfully configure lamp server, phpmyadmin and ejabberd server on my ec2 Ubuntu instance. Now i want to connect my phpMyAdmin with ejabberd i don't know how to do that please provide some help or some reference. Thanks


回答1:


change in your ejabberd configuration file-

## MySQL server:
##
odbc_type: mysql
odbc_server: "localhost"      #your host ip or domain name
odbc_database: "ejabberddb"   # your database name
odbc_username: "root"
odbc_password: "test"
odbc_pool_size: 50
##
## If you want to specify the port:
odbc_port: 3306

for more detail check this link



来源:https://stackoverflow.com/questions/36905684/connect-phpmyadmin-with-ejabberd-server-on-ec2-ubuntu-instance

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!