Linux AS默认安装mysql操作

AS4默认下已经安装了mysql,启动方法可以用如下的命令
#service mysqld start
#mysql
>

默认情况mysql的root密码为空,所以为了安全,需要对root密码进行修改。

方法如下:
# /etc/init.d/mysql stop
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
# mysql -u root mysql
mysql> UPDATE user SET Password=PASSWORD('你要设置的新密码') where USER='root';
mysql> FLUSH PRIVILEGES;
mysql> quit
# /etc/init.d/mysql restart
# mysql -uroot –p
Enter password: <输入新设的密码newpassword>
mysql>