MySQL 5.5 installation

tar xf mysql-5.5.49.tar.gz

cd mysql-5.5.49

cmake -DCMAKE_INSTALL_PREFIX=/webapp/marlonm/mysql5.5.49 .

make

make install

cd /webapp/marlonm/mysql5.5.49

scripts/mysql_install_db --user=marlonm

nohup bin/mysqld_safe --user=marlonm &

sudo cp support-files/my-medium.cnf /etc/my.cnf (optional)

sudo cp support-files/mysql.server /etc/init.d/mysql.server (optional)

时间: 2024-10-27 12:13:31

MySQL 5.5 installation的相关文章

Ubutu: mysql + jdk + tomcat installation

MySQL on Linux 下载安装包:https://dev.mysql.com/downloads/mysql/ Download the installation package and copy it to Linux machine under /home/agu/installer. In the shell command, run following in order: [email protected]:~# dpkg -i /home/agu/installer/mysql

MySQL Compiling and Installation

编译安装MySQL-5.5 cmake的重要特性之一是其独立于源码(out-of-source)的编译功能,即编译工作可以在另一个指定的目录中而非源码目录中进行,这可以保证源码目录不受任何一次编译的影响,因此在同一个源码树上可以进行多次不同的编译,如针对于不同平台编译. 编译安装MySQL-5.5 一.安装cmake 跨平台编译器 # tar xf cmake-2.8.8.tar.gz # cd cmake-2.8.8 # ./bootstrap # make # make install 二.

MySQL NDB Cluster Installation Guide

Mysql NDB Cluster其主要功能是在无共享存储的系统中部署基于内存的数据库Cluster,其主要是通过NDB Cluster(简称NDB)存储引擎来实现的.本文使用的NDB Cluster版本为7.6,主机描述见下表: 1.各个节点软件包安装我这里创建了一个YUM仓库,所以直接通过yum命令安装. NDB管理节点安装软件包 [[email protected] ~]# yum -y install mysql-cluster-commercial-management-server

MySQL vs. MongoDB: Choosing a Data Management Solution

原文地址:http://www.javacodegeeks.com/2015/07/mysql-vs-mongodb.html 1. Introduction It would be fair to say that as IT professionals we are living in the golden age of data management era. As our software systems become more complex and more distributed,

Wedora Platform Offline Installation Steps

1 Preparation Before the installation, you need to check the following: Install the CentOS-6.5 64 bit in your server machine.(We suggests use CentOS-6.5-x86_64bin-DVD1.iso ). The CentOS system shall be without Java and Mysql database, etc, which will

Ubuntu12.04 以通用可执行文件(Generic Binaries)安装MySQL

选择安装版本: [http://dev.mysql.com/doc/refman/5.6/en/choosing-version.html] Normally, if you are beginning to use MySQL for the first time or trying to port it to some system for which there is no binary distribution, use the most recent General Availabil

MySQL系列之一键安装脚本----单实例/多实例

最近在搞MySQL,由于经常测试一些东西.因此,就写了一个一键安装脚本. 脚本用途: 用于在CentOS/RHEL 6.x系统上快速部署出Mysql的单实例或者多实例环境 脚本说明: 该脚本运行情况良好 针对脚本中,每一步命令执行的正误判断以及提醒非常醒目,可协助执行者快速定位错误源 脚本诸多内容都以声明变量,增加了脚本的灵活性和扩展性 脚本以做模块化处理,对应功能对应函数,方便SA快速更改和了解该脚本 该脚本使用注意事项: 1.能够通公网或者mysql源码包已经放置到/usr/local/sr

Ubuntu 12.04 安装MySQL

转自: http://www.cnblogs.com/yhLinux/p/4012689.html 本文是对 Ubuntu 12.04 环境下安装 MySQL 的记录,通过这两天的折腾,不断试错,才发现要完整地掌握 MySQL 安装其实并不复杂,关键是遇到问题时记住到官方文档寻找解决方案,在网络上搜索的网友的方法不一定适合你,而官方文档是比较全面的,建议大家有问题多看看. 安装MySQL的方法有多种方式,包括源码安装,包管理器安装,二进制安装等.之前,我使用最快的方式--包管理器安装,但安装完成

Installing MySQL Server

Installing MySQL Server Here we will learn how to Compile and Install the MySQL Server from source code. After that we will Configure our server for basic functionality and Secure it for general usage. Finally we will discuss the Basics of MySQL Serv