三 mysql 初始配置

 常用命令:
service mysql start
service mysql stop
service mysql restart

登录mysql
/www/lnmp/mysql/bin/mysql -u root -p 

创建数据库
create database test;

创建一个用户test_a对test数据库有使用权并有远程访问权限
grant all privileges on test.* to 'test_a'@'%' identified by '密码' with grant option;
刷新权限
flush privileges;
离开
\q



初始安装配置

cd /www/lnmp/mysql
安装数据
./scripts/mysql_install_db --user=mysql

service mysql start

启动初始配置向导
./bin/mysql_secure_installation


NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!


In order to log into MySQL to secure it, we'll need the current
password for the root user.  If you've just installed MySQL, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none): 
第一次安装直接回车,还没有设置密码

OK, successfully used password, moving on...

Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.

Set root password? [Y/n] 
输入y然后设置密码

By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] 
删除匿名用户,Y

Normally, root should only be allowed to connect from 'localhost'.  This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n]
禁止根远程登录,Y

By default, MySQL comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n]
删除测试数据库,Y

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] 
刷新权限,Y

All done!  If you've completed all of the above steps, your MySQL
installation should now be secure.

Thanks for using MySQL!
感谢您使用MySQL!配置完成

你可能感兴趣的:(LNMP)