还是因为vps的原因换了一个linux-vps
下面是我在linux系统下的myslq配置
安装完mysql后就是链接使用它了
mysqladmin -u root -p oldpass newpass
因为新安装的myslq密码都是空的
所以上面就直接设置了新密码
然后进入mysql
mysql -u root -p
Enter password: 这里是你刚刚设置的密码
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 5.1.61 Source distribution
Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporat...
一、安装 MySQL
首先来进行 MySQL 的安装。打开超级终端,输入:
[root@localhost ~]# yum install mysql mysql-server
安装完毕,让 MySQL 能够随系统自动启动:
[root@localhost ~]# chkconfig --levels 235 mysqld on
[root@localhost ~]# /etc/init.d/mysqld start
设置 MySQL 数据 root 账户的密码:
代码:
mysqladmin -u root password ‘newpassword’
"newpassword" 代表的是你想要设置的密码,新安装的mysql的root根用户密码默认为空,设置密码后可以让mysql数据库更安全
代码:
mysql -u root -p (此时会要求你输入刚刚设置的密码,输入后回车即可)
mysql> DROP DATABASE test; (删除test数据库)
mysql> DELETE FROM my...