欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解CentOS6.5 安装 MySQL5.1.71的方法

程序员文章站 2023-12-11 19:47:46
yum install -y mysql-server mysql mysql-deve service mysqld start/stop/restart...
yum install -y mysql-server mysql mysql-deve
service mysqld start/stop/restart

首次启动, 会有如下的提示信息。其中包括

  • 如何设置开机启动
  • 如何设置root密码(默认为空)
  • 如何配置生产环境
  • 如何设置守护进程
  • 如何测试守护进程
initializing mysql database: installing mysql system tables...
ok
filling help tables...
ok
to start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system
please remember to set a password for the mysql root user !
to do so, start the server, then issue the following commands:
/usr/bin/mysqladmin -u root password 'new-password'
/usr/bin/mysqladmin -u root -h localhost.localdomain password 'new-password'
alternatively you can run:
/usr/bin/mysql_secure_installation
which will also give you the option of removing the test
databases and anonymous user created by default. this is
strongly recommended for production servers.
see the manual for more instructions.
you can start the mysql daemon with:
cd /usr ; /usr/bin/mysqld_safe &
you can test the mysql daemon with mysql-test-run.pl
cd /usr/mysql-test ; perl mysql-test-run.pl
please report any problems with the /usr/bin/mysqlbug script!
                              [ ok ]
starting mysqld:                      [ ok ]

以上所述是小编给大家介绍的centos6.5 安装 mysql5.1.71的方法,希望对大家有所帮助

上一篇:

下一篇: