安装centos时选择安装Mysql 服务器

mysql的默认登录密码为空,但是直接登录的时候有报错:

[root@localhost bin]# mysql -u root -p
Enter password:
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)

应该是没有起mysql服务。

先查看mysql服务的状态:

[root@localhost bin]# /etc/rc.d/init.d/mysqld status
mysqld 已停

启动mysql服务:

[root@localhost bin]# /etc/rc.d/init.d/mysqld start
初始化 MySQL 数据库: WARNING: The host 'xxaq' could not be looked up with resolveip.
This probably means that your libc libraries are not 100 % compatible
with this binary MySQL version. The MySQL daemon, mysqld, should work
normally with the exception that host name resolving will not work.
This means that you should use IP addresses instead of hostnames
when specifying MySQL privileges !
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 xxaq 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!

[确定]
正在启动 mysqld: [确定]

查看mysql状态

[root@localhost bin]# ps -aef|grep mysql
root 17468 1 0 08:57 pts/1 00:00:00 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysql --socket=/var/lib/mysql/mysql.sock --pid-file=/var/run/mysqld/mysqld.pid --basedir=/usr --user=mysql
mysql 17573 17468 0 08:57 pts/1 00:00:00 /usr/libexec/mysqld --basedir=/usr --datadir=/var/lib/mysql --user=mysql --log-error=/var/log/mysqld.log --pid-file=/var/run/mysqld/mysqld.pid --socket=/var/lib/mysql/mysql.sock
root 17600 17169 0 08:57 pts/1 00:00:00 grep mysql

此时再登录,没有报错:

[root@localhost bin]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.1.73 Source distribution

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>

最新文章

  1. ElasticSearch集群配置
  2. openfire+asmack搭建的安卓即时通讯(六) 15.4.16
  3. python(5)-正则表达式
  4. valgrind 生成mysqld调用图之 select now()跟踪
  5. ANT的下载和安装
  6. Ubuntu 搭建NDK环境
  7. C++ DLL注册
  8. 修改/home内子目录的名字
  9. hdu 5305 friends
  10. TensorRT&Sample&Python[introductory_parser_samples]
  11. 第八节:Task的各类Task<TResult>返回值以及通用线程的异常处理方案。
  12. python面向对象学习(三)私有属性和私有方法
  13. 3d max 动作Take 001改名
  14. 解决Oracle死锁问题步骤
  15. CentOS在VirtualBox虚拟机中网络配置
  16. Linux系统启动那些事—基于Linux 3.10内核【转】
  17. 从运维角度来分析mysql数据库优化的一些关键点【转】
  18. /var/run/yum.pid 已被锁定,PID 为 2925 的另一个程序正在运行
  19. SharePoint 内容编辑器部件介绍
  20. 5. window.location.href/replace/reload()--页面跳转+替换+刷新

热门文章

  1. 占位 RK
  2. LVS+Nginx(LVS + Keepalived + Nginx安装及配置)
  3. JUC-JUC是什么?
  4. 编码 - 调整 gitbash 文本字符集
  5. ORA-01830
  6. Js script type="text/template"的使用简单说明
  7. ubuntu安装搜狗输入
  8. windows查询端口,杀进程
  9. Python入门2 —— 变量
  10. 动态数组、allocator 类