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回车输入密码
安全,不会。
1、crm数据库存在阿里云服务器是很安全的,采用大规模分布式计算系统,每份数据多个副本,单份损坏可以在短时间内快速恢复,目的就是保证crm数据安全。在无地震等重大自然灾害下,云服务器数据可靠性可达99.999%。
2、数据不会被crm库公司采集,因为crm数据库存在阿里云服务器上,只有阿里云服务器有采集信息的权限,crm库公司是没有采集权限的。
用 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 ]