xxxx----省略若干字,,,装个MYSQL学习学习。
yum install mysql 装好了,
运行mysql
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)。有文章说是权限问题,后来把权限搞成777也不行。说是没启动MYSQL。那就启动吧
[root@localhost mysql]# service mysql start
mysql: unrecognized service
不行。。。网上也找不到个所以然来。说是用RC.D启动
/etc/rc.d/init.d/mysqld start
-bash: /etc/rc.d/init.d/mysqld: No such file or directory
依然不行。
后来找文章,有人是装的mysql-server.就把前面装的删了。
删除用yum remove mysql 。YUM还是很方便的,呵呵。
再yum install mysql-server
装好了。启动
[root@localhost mysql]# service mysql start
mysql: unrecognized service
依旧。。。。。。。。
然后 /etc/rc.d/init.d/mysql 启动
/etc/init.d/mysqld start
Initializing MySQL database: Installing MySQL system tables...
110112 15:24:06 [Warning] option 'max_join_size': unsigned value 18446744073709551615 adjusted to 4294967295
110112 15:24:06 [Warning] option 'max_join_size': unsigned value 18446744073709551615 adjusted to 4294967295
OK
Filling help tables...
110112 15:24:06 [Warning] option 'max_join_size': unsigned value 18446744073709551615 adjusted to 4294967295
110112 15:24:06 [Warning] option 'max_join_size': unsigned value 18446744073709551615 adjusted to 4294967295
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 mysql-test ; perl mysql-test-run.pl
Please report any problems with the /usr/bin/mysqlbug script!
The latest information about MySQL is available on the web at
http://www.mysql.com
Support MySQL by buying support/licenses at http://shop.mysql.com
[ OK ]
Starting MySQL: [ OK ]
好了。。竟然。。。呵呵
加到自启动了吧。省的麻烦
chkconfig mysqld on
注意一下,这里是mysqld 不是mysql
运行一下mysql
[root@localhost /]# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.0.77 Source distribution
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
呵呵,好了!问题解决了!
再试试 [root@localhost mysql]# service mysqld restart
Stopping MySQL: [ OK ]
Starting MySQL: [ OK ]
都OK了
分享到:
相关推荐
在Red Hat Linux下安装与操作MySQL数据库是一项常见且重要的任务,尤其对于系统管理员和数据库开发者而言。以下将详细解析在Red Hat系统上安装MySQL及其相关Perl模块的过程,并提供一些基本的MySQL操作命令。 ### ...
在Redhat6环境下配置MySQL集群,首先需要确保系统已卸载任何现存的 MySQL 安装。然后,下载并安装MySQL集群的特定版本,例如 `mysql-cluster-gpl-7.2.10-linux2.6-x86_64`。安装步骤包括创建必要的用户和组,解压...
如果你希望允许远程访问MySQL,可以修改`mysql.user`表中的记录,但请注意,这会增加安全风险: ```sql mysql> USE mysql; mysql> SELECT host, user, password FROM user; mysql> UPDATE user SET password = ...
本文档详细记录了在64位RedHat系统下安装DBI(Database Interface)和DBD(Database Driver)- MySQL的过程及遇到的问题。起初作者并未意识到在64位RedHat环境下安装DBI和DBD-Mysql会遇到挑战,但在实际操作过程中...
本教程将指导你如何通过YUM包管理器在Redhat7上安装MySQL 5.7.17。 首先,你需要下载MySQL的社区版源。你可以从MySQL的官方仓库下载适合RHEL/CentOS 7的MySQL 5.7源文件。在终端中输入以下命令: ```bash [root@...
### Linux 下 MySQL 5.7.13 的安装与配置详解 #### 一、服务器信息检查 在安装 MySQL 之前,首先要确保服务器满足相应的硬件和软件需求。这一步骤可以通过以下命令来完成: 1. **确认 Linux 发行版**: - `cat /...
本教程将详述如何使用提供的资源进行全自动MySQL的安装与主从复制配置,适用于MySQL 5.7.x版本以及Redhat 7系列操作系统。 一、MySQL一键安装 "one_mysqlinstall"脚本是一个自动化安装工具,它简化了在Linux系统上...
### MySQL 5.6.34 的安装部署与主从复制配置详解 #### 一、系统环境准备 根据所提供的信息,我们首先了解到该教程适用于 CentOS 6.4 系统,其内核版本为 `2.6.32-358.el6.x86_64`,架构为 `x86_64`。在进行 MySQL ...
### MySQL 5.7.21 在 Redhat 企业版中的安装步骤详解 #### 一、准备工作 在开始安装MySQL之前,确保您的Redhat企业版系统满足以下条件: 1. **系统环境准备**:确认系统内没有其他版本的MySQL安装。 2. **下载...
《Redhat Linux下MySQL安装使用手册》 在Redhat Linux操作系统中安装和使用MySQL数据库是一项基础但至关重要的任务。MySQL是一种流行的开源关系型数据库管理系统,广泛应用于各种规模的应用程序。以下是一个简化的...
#### 二、MySQL在Ubuntu和RedHat上的安装 **1. Ubuntu上的安装** 在Ubuntu系统中,可以通过`apt-get`命令轻松地安装MySQL服务器和客户端。具体步骤如下: ```bash sudo apt-get update sudo apt-get install ...
Win32 上安装 MySQL 4.12.2 在 Win95 /Win98上启动 MySQL 4.12.3 在 NT 上启动 MySQL 4.12.4 在 Win32 上运行 MySQL 4.12.5 用 SSH 从 Win32 连接一个远程MySQL 4.12.6 MySQL-Win32与Unix ...
+ 4.10.3 在 Win32 上安装 MySQL Perl 分发 + 4.10.4 使用 Perl DBI/DBD接口遇到的问题 o 4.11 系统特定的问题 + 4.11.1 Solaris注意事项 + 4.11.2 Solaris 2.7 注意事项 + 4.11.3 Solaris x86 注意事项 + ...