我已经下载了适用于 ubuntu 的 mysql 服务器 tar 文件。我尝试按照互联网上提供的步骤进行安装,但始终无法成功。如何才能轻松地手动安装它。安装后如何启动 mysql
答案1
你不需要构建源代码,它在存储库中,打开终端并运行
sudo apt-get install mysql-server
MySQL 将自动启动
从源代码构建
您可以按照 MySQL 网站上的步骤从源代码手动构建 mysql:
# Preconfiguration setup groupadd mysql useradd -g mysql mysql # Beginning of source-build specific instructions tar zxvf mysql-VERSION.tar.gz cd mysql-VERSION ./configure --prefix=/usr/local/mysql make make install # End of source-build specific instructions # Postinstallation setup cd /usr/local/mysql chown -R mysql . chgrp -R mysql . bin/mysql_install_db --user=mysql chown -R root . chown -R mysql var # Next command is optional cp support-files/my-medium.cnf /etc/my.cnf bin/mysqld_safe --user=mysql & # Next command is optional cp support-files/mysql.server /etc/init.d/mysql.server
https://dev.mysql.com/doc/refman/5.1/en/installing-source-distribution.html
答案2
答案3
您可以使用从源代码构建软件包。您可以在以下位置fpm
找到使用教程fpm
这里