Jump to content

So, I'm running a minecraft server, and I've got this 'plugin' which allows people to choose passwords for their accounts. Here's the plugin info: http://dev.bukkit.org/bukkit-plugins/admnweb-dbpassword-v0-1-allows-p/

 

This is what my config file says:

mysql:
  port: '3306'
  host: 'localhost'
  table: 'users'
  user: 'root'
 
Can anybody help me with this? Installing a mysql database or w/e
Link to comment
https://linustechtips.com/topic/133087-installing-mysql-database/
Share on other sites

Link to post
Share on other sites

Install WAMP (if you are running it on Windows), MySQL is included with that.

Link to post
Share on other sites

I've installed a MySQL db and I can access it with Heidisql. But How do I get the plugin to work? The server isn't asking for a password, neither are the commands working 

This is my config file atm: 

 

mysql:

  port: '3306'
  host: 'localhost'
  table: 'users'
  user: 'root'
  password: 'root'
  database: 'minecraft'
custom_columns_for_table:
  id: 'id'
  username: 'username'
  password: 'password'
  salt: 'salt'
user_password:
  dynamic_salt: true
  save_salt_to_field: true
  hash: 'MD5'
  salt: myNotSoSecretSalt
create_user_on_first_join: true
debug_mode: false
Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×