码迷,mamicode.com
首页 > 其他好文 > 详细

Xampp相关命令

时间:2017-05-10 12:59:09      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:rac   iad   cti   code   flush   相关   localhost   end   other   

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 root@localhost = password(‘123‘); 

创建用户并设置远程访问权限

MariaDB [(none)]> CREATE USER ‘用户名‘@‘%‘ IDENTIFIED BY ‘密码‘;

MariaDB [(none)]> GRANT ALL ON *.* TO ‘用户名‘@‘%‘;

MariaDB [(none)]> flush privileges;

 

Xampp相关命令

标签:rac   iad   cti   code   flush   相关   localhost   end   other   

原文地址:http://www.cnblogs.com/wqy415/p/6834989.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!