Install MySQL 5.5.61, Apache 2.2.34, PHP 5.6.37 - LAMP Architecture (1) - MySQL under CentOS 6.9

Keywords: MySQL cmake socket Database

This article

1. Install and configure MySQL 5.5

1) Installation

Download dependency:

yum -y install gcc gcc-c++ autoconf libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel zlib zlib-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel krb5 krb5-devel libidn libidn-devel openssl openssl-devel bison cmake

Pre-compiled environment:

MySQL 5.5 was replaced by CMake

The view option is cmake-LH

cmake -DCMAKE_INSTALL_PREFIX=/usr/local/mysql/ -DMYSQL_UNIX_ADDR=/usr/local/mysql/data/mysql.sock -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci -DWITH_EXTRA_CHARSETS=all -DWITH_MYISAM_STORAGE_ENGINE=1 -DWITH_INNOBASE_STORAGE_ENGINE=1 -DWITH_MEMORY_STORAGE_ENGINE=1 -DWITH_READLINE=1 -DWITH_INNODB_MEMCACHED=1 -DWITH_DEBUG=OFF -DWITH_ZLIB=bundled -DENABLED_LOCAL_INFILE=1 -DENABLED_PROFILING=ON -DMYSQL_MAINTAINER_MODE=OFF -DMYSQL_DATADIR=/usr/local/mysql/data -DMYSQL_TCP_PORT=3306 -DWITH_MEMORY_STORAGE_ENGINE=1 -DWITH_READLINE=1

#cmake
-DCMAKE_INSTALL_PREFIX=/usr/local/mysql \           (Install the root directory)
#- DMYSQL_UNIX_ADDR=/usr/local/mysql/data/mysql.sock(UNIX socket file)
#- DDEFAULT_CHARSET=utf8 (default character set)
#- DDEFAULT_COLLATION=utf8_general_ci (default encoding)
#- DWITH_EXTRA_CHARSETS=utf8,gbk,all\ (additional encoding)
#- DWITH_PERFSCHEMA_STORAGE_ENGINE=1\ (Enabling PERFSCHEMA Engine Support)
#- DWITH_FEDERATED_STORAGE_ENGINE=1 (Enabling FEDERATED Engine Support)
# - DWITH_PARTITION_STORAGE_ENGINE=1 (Enabling PARTITION Engine Support)
#- DWITH_ARCHIVE_STORAGE_ENGINE=1\ (Enabling ARCHIVE Engine Support)
#- DWITH_READLINE=1\ (using readline functionality)
#- DMYSQL_DATADIR=/usr/local/mysql/data\(database data directory)
#- DMYSQL_TCP_PORT=3306 (TCP/IP port)

**mysql Common parameters**
# -DCMAKE_INSTALL_PREFIX=/usr/local/mysql          \    #Installation path
# -DMYSQL_DATADIR=/usr/local/mysql/data            \    #Data file storage location
# -DSYSCONFDIR=/etc                                \    #my.cnf Path
# -DWITH_MYISAM_STORAGE_ENGINE=1                   \    #Support MyIASM Engine
# -DWITH_INNOBASE_STORAGE_ENGINE=1                 \    #Support InnoDB engine
# -DWITH_MEMORY_STORAGE_ENGINE=1                   \    #Support for Memory Engine
# -DWITH_READLINE=1                                \    #Keyboard shortcuts (I haven't used them)
# -DMYSQL_UNIX_ADDR=/tmp/mysqld.sock               \    #Connect database socket path
# -DMYSQL_TCP_PORT=3306                            \    #port
# -DENABLED_LOCAL_INFILE=1                         \    #Allow data to be imported locally
# -DWITH_PARTITION_STORAGE_ENGINE=1                \    #Installation support database partition
# -DEXTRA_CHARSETS=all                             \    #Install all character sets
# -DDEFAULT_CHARSET=utf8                           \    #Default character

make

make install

2) Configure MySQL (use binary packages from this step)

1. Added mysql users (users do not need to log on to Linux system the same, do not need a home directory)

useradd -s /sbin/nologin -M

2. Initialization of MySQL

Enter the MySQL installation directory and execute mysql_install_db to change permissions

cd /usr/local/mysql

./script/mysql_install_db --user=mysql

chown -R mysql.mysql /usr/local/mysql

3. Configure the service and change the password

Modify my.cnf

Cp/usr/local/mysql/support-files/my-small.cnf/etc/my.cnf# Depending on the actual situation, you can also use other templates.

Add default-character-set=utf8 and character_set_server=utf8 to my.cnf's [client] and [mysqld] respectively

# Example MySQL config file for small systems.
#
# This is for a system with little memory (<= 64M) where MySQL is only used
# from time to time and it's important that the mysqld daemon
# doesn't use much resources.
#
# MySQL programs look for option files in a set of
# locations which depend on the deployment platform.
# You can copy this option file to one of those
# locations. For information about these locations, see:
# http://dev.mysql.com/doc/mysql/en/option-files.html
#
# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.

# The following options will be passed to all MySQL clients
[client]
#password       = your_password
port            = 3306
socket          = /usr/local/mysql/data/mysql.sock
default-character-set=utf8

# Here follows entries for some specific programs

# The MySQL server
[mysqld]
port            = 3306
socket          = /usr/local/mysql/data/mysql.sock
skip-external-locking
key_buffer_size = 16K
max_allowed_packet = 1M
table_open_cache = 4
sort_buffer_size = 64K
read_buffer_size = 256K
read_rnd_buffer_size = 256K
net_buffer_length = 2K
thread_stack = 128K
character_set_server=utf8

# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (using the "enable-named-pipe" option) will render mysqld useless!
#
#skip-networking
server-id       = 1

# Uncomment the following if you want to log updates
#log-bin=mysql-bin

# binary logging format - mixed recommended
#binlog_format=mixed

# Causes updates to non-transactional engines using statement format to be
# written directly to binary log. Before using this option make sure that
# there are no dependencies between transactional and non-transactional
# tables such as in the statement INSERT INTO t_myisam SELECT * FROM
# t_innodb; otherwise, slaves may diverge from the master.
#binlog_direct_non_transactional_updates=TRUE

# Uncomment the following if you are using InnoDB tables
#innodb_data_home_dir = /usr/local/mysql/data
#innodb_data_file_path = ibdata1:10M:autoextend
#innodb_log_group_home_dir = /usr/local/mysql/data
# You can set .._buffer_pool_size up to 50 - 80 %
# of RAM but beware of setting memory usage too high
#innodb_buffer_pool_size = 16M
#innodb_additional_mem_pool_size = 2M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 5M
#innodb_log_buffer_size = 8M
#innodb_flush_log_at_trx_commit = 1
#innodb_lock_wait_timeout = 50

[mysqldump]
quick
max_allowed_packet = 16M

[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates

[myisamchk]
key_buffer_size = 8M
sort_buffer_size = 8M

[mysqlhotcopy]
interactive-timeout

Copy MySQL's service startup file

cp /usr/local/mysql/support-files/mysql.server /etc/mysqld

Start MySQL

mysqld_safe --skip-grant-tables &

Modify mysql password

mysqladmin -uroot flush-priviledges password "Your password"

Logon test

mysql -uroot -p 

Posted by dwnz on Mon, 04 Feb 2019 03:18:16 -0800