sudo mariadb连接到mariadb,进行一些数据库的配置1.use mysql;2.update user set authentication_string=password('root'),plugin='mysql_native_password' where user='root';第二步的作用是设置数据库服务器的root暗码为root,并让root可以用暗码登录。3.flush privileges;第三步,刷新权限4.exit 退出mariadb