bitsCN.com mysql添加用户先以root用户登入选择要添加的数据库(jbpm)use jbpmgrant all on jbpm to scott@localhost identified by scott删除用户mysql -uroot -prootuse mysqldelete from user where user=scott and host=localhost;flush privileges; bitsCN.com