CentOS6.9에서 MySQL을 설치합니다. 5.5.61,Apache2.2.34,PHP5.6.37-LAMP 아키텍처(一)-MySQL

6391 단어 Linux
이 편
1. MySQL 설치 및 구성 5.5
1) 설치
다운로드 종속:
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
사전 컴파일 환경:
MySQL5.5 다음에 Cmake로 바꿨어요.
보기 옵션은 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 \           (     )
#-DMYSQL_UNIX_ADDR=/usr/local/mysql/data/mysql.sock \   (UNIX socket  )
#-DDEFAULT_CHARSET=utf8 \     (     )
#-DDEFAULT_COLLATION=utf8_general_ci \  (    )
#-DWITH_EXTRA_CHARSETS=utf8,gbk,all \         (     )
#-DWITH_PERFSCHEMA_STORAGE_ENGINE=1 \(  PERFSCHEMA    )
#-DWITH_FEDERATED_STORAGE_ENGINE=1 \   (  FEDERATED    )
# -DWITH_PARTITION_STORAGE_ENGINE=1\     (  PARTITION    )
#-DWITH_ARCHIVE_STORAGE_ENGINE=1 \         (  ARCHIVE    )
#-DWITH_READLINE=1 \(  readline  )
#-DMYSQL_DATADIR=/usr/local/mysql/data \  (       )
#-DMYSQL_TCP_PORT=3306                              (TCP/IP  )

**mysql    **
# -DCMAKE_INSTALL_PREFIX=/usr/local/mysql          \    #    
# -DMYSQL_DATADIR=/usr/local/mysql/data            \    #        
# -DSYSCONFDIR=/etc                                \    #my.cnf  
# -DWITH_MYISAM_STORAGE_ENGINE=1                   \    #  MyIASM  
# -DWITH_INNOBASE_STORAGE_ENGINE=1                 \    #  InnoDB  
# -DWITH_MEMORY_STORAGE_ENGINE=1                   \    #  Memory  
# -DWITH_READLINE=1                                \    #     (    )
# -DMYSQL_UNIX_ADDR=/tmp/mysqld.sock               \    #     socket  
# -DMYSQL_TCP_PORT=3306                            \    #  
# -DENABLED_LOCAL_INFILE=1                         \    #         
# -DWITH_PARTITION_STORAGE_ENGINE=1                \    #         
# -DEXTRA_CHARSETS=all                             \    #        
# -DDEFAULT_CHARSET=utf8                           \    #     

make
make install
2) MySQL 구성(이 단계부터 바이너리 패키지 사용 가능)
1. mysql 사용자 추가 (사용자는 Linux 시스템에 로그인할 필요가 없고 홈 디렉터리가 필요없음)
useradd -s/sbin/nologin -M
2. MySQL 초기화
mysql 설치 디렉터리에 들어가서 mysql 실행하기install_db, 권한 변경
cd/usr/local/mysql
./script/mysql_install_db --user=mysql
chown -R mysql.mysql/usr/local/mysql
3. 서비스 구성, 비밀번호 변경
수정 my.cnf
cp/usr/local/mysql/support-files/my-small.cnf/etc/my.cnf#실제상황에 따라다른 모델로
my.cnf의 [client]와 [mysqld]에default-character-set=utf8과characterset_server=utf8
# 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

MySQL 서비스 시작 파일 복사
cp/usr/local/mysql/support-files/mysql.server/etc/mysqld
MySQL 시작
mysqld_safe --skip-grant-tables &
mysql 비밀번호 수정
mysqladmin -uroot flush-priviledges password "너의 비밀번호"
로그인 테스트
mysql -uroot -p

좋은 웹페이지 즐겨찾기