0

ERROR: SQLSTATE[HY000] [1045] Access denied for user 'siremis'@'localhost' (using password: YES). I amgetting this error during the SIREMIS Setup in the browser. Any ideas on hoiw to resolve this ? I am wasting all my time on this since a week.

Akhil
  • 1
  • 2
  • why dont you try to grant siremis user for related database. https://dev.mysql.com/doc/refman/8.0/en/grant.html – Yasin Caner Oct 26 '18 at 07:04

2 Answers2

0

Likely you missed the installation step for granting access for siremis user to MySQL server:

miconda
  • 1,754
  • 11
  • 14
0

enter this in mysql command line via root user:

GRANT ALL PRIVILEGES ON siremis.* TO siremis@localhost IDENTIFIED BY 'siremisrw';
smrachi
  • 368
  • 3
  • 8