Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 550 Bytes

README-stepca.md

File metadata and controls

19 lines (16 loc) · 550 Bytes

StepCA

Tested with versions 0.17.4

Necessary configuration change in ca.json:

        "db": {
                "type": "mysql",
                "dataSource": "stepcauser:pass@tcp(127.0.0.1:3306)/",
                "database": "stepcadbname"
        },

Ensure that the user has the corresponding rights in the database:

CREATE DATABASE stepcadbname;
CREATE USER 'stepcauser'@'%' IDENTIFIED BY 'pass';
GRANT ALL PRIVILEGES ON stepcadbname.* TO 'stepcauser'@'%';