我正在尝试在 ubuntu 中安装 mysql 以在 rails 上运行 ruby。我正在学习 Lynda 上的教程。我已成功安装了 ruby、gem 和 rails。
ruby -v
ruby 1.8.7 (2011-06-30 patchlevel 352) [x86_64-linux]
gem -v
1.8.15
rails -v
Rails 2.3.14
现在,我正在尝试安装 mysql。为此,教程要求通过添加一行来更新 .profile 文件。
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
我添加了以下行:
export PATH="usr/local/bin:/usr/local/sbin:/usr/local/mysql/bin:$PATH"
我退出终端并打开了一个新实例。当我这样做时:
echo $PATH
它给了我:
/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
mysql 没有出现在路径中。
要安装 mysql,我执行以下操作:
sudo apt-get install mysql-client-core-5.5
&可以看到mysql已经安装:
which mysql
/usr/bin/mysql
但我看不到 mysql 版本:
mysql -v
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
我需要做什么来安装 mysql。解决此错误是否会让我从终端访问 mysql,还是我还需要做其他事情?
答案1
MySQL 采用客户端/服务器架构。现在您需要安装服务器 —— 而不仅仅是允许您与其通信的工具。它可能有一个类似“mysql-server”的名称,因此请执行“sudo apt-get install mysql-server”。