重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
1、安装了mysql客户端和服务器--》创建好数据库--》服务器上的站点直接连接地址为 localhost。
在成都网站建设、做网站中从网站色彩、结构布局、栏目设置、关键词群组等细微处着手,突出企业的产品/服务/品牌,帮助企业锁定精准用户,提高在线咨询和转化,使成都网站营销成为有效果、有回报的无锡营销推广。创新互联专业成都网站建设10余年了,客户满意度97.8%,欢迎成都创新互联客户联系。
2、服务器外的如果要调用需要服务器开启mysql远程允许。
3、然后再调用的时候填写服务器的外网ip地址。
1.查看mysql编辑情况rpm -qa|grep mysql
2.卸载原有的mysql rpm -e --nodeps mysql
//
强力删除模式,如果使用上面命令删除时,提示有依赖的其它文件,则用该命令可以对其进行强力删除
3.通过命令查看yum上面提供的可下载版本 yum list | grep mysql
4.安装mysql客户端和服务端 yum install -y mysql-server mysql mysql-deve
5.查看mysql启动状态 mysql service status
6.登录mysql提示
7.修改mysql的root密码
service mysqld stop
无密码登录mysql:mysqld_safe --skip-grant-tables
输入mysql -uroot -p 直接回车进入mysql客户端页面
use mysql;
update user set password=PASSWORD("root")where user="root";修改密码
flush privileges; 更新权限
service mysqld restart
最后直接登录 mysql -u root -p回车输入密码
用 SSH客户端登录上以后
首先启动数据库:
[root@iZm5ec880z2rorZ ~]# service mysqld start
可以输入一下加粗命令:
[root@iZm5ec880z2rorZ ~]# mysql -u root -p
Enter password: (输入你的数据库密码)
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.1.73-log MySQL Community Server (GPL)
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql use mysql
Database changedmysql GRANT ALL PRIVILEGES ON *.* TO root@'%' IDENTIFIED BY 'ldyu123' WITH GRANT OPTION;
Query OK, 0 rows affected (0.00 sec)
mysql commit;
Query OK, 0 rows affected (0.00 sec)
mysql flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql exit;
退出后,输入下边的命令:
[root@iZm5ec880z2rorZ ~]# service mysqld restart
Shutting down MySQL... [ OK ]
Starting MySQL. [ OK ]