Xampp相关命令
Posted wqy的笔记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Xampp相关命令相关的知识,希望对你有一定的参考价值。
1 启动关闭
启动 XAMPP
# ./lampp start
停止 XAMPP
# ./lampp stop
重启 XAMPP
# ./lampp restart
2 数据库
进入mysql
# /opt/lampp/bin/mysql -uroot -p
xampp安装完毕后,默认数据库密码为空
Enter password:
这里直接Enter就可以进入数据库
Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 5 Server version: 10.1.21-MariaDB Source distribution Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others. Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement. MariaDB [(none)]>
设置root用户密码
set password for [email protected] = password(‘123‘);
创建用户并设置远程访问权限
MariaDB [(none)]> CREATE USER ‘用户名‘@‘%‘ IDENTIFIED BY ‘密码‘; MariaDB [(none)]> GRANT ALL ON *.* TO ‘用户名‘@‘%‘; MariaDB [(none)]> flush privileges;
以上是关于Xampp相关命令的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段15——git命令操作一个完整流程