06-MySQL install on centOS

https://github.com/Hackeruncle/MySQL/blob/master/MySQL%205.6.23%20Install.txt

1.Download

[root@sht-sgmhadoopnn-01 ~]# cd /usr/local

#選擇win7的mysql軟件包

[root@sht-sgmhadoopnn-01 local]# rz

2.Check isnot install

[root@sht-sgmhadoopnn-01 local]# ps -ef|grep mysqld

root? ? ? 2493? 2423? 0 19:48 pts/3? ? 00:00:00 grep mysqld

[root@sht-sgmhadoopnn-01 local]# rpm -qa |grep -i mysql

3.tar and mv

[root@sht-sgmhadoopnn-01 local]# tar xzvf mysql-5.6.23-linux-glibc2.5-x86_64.tar.gz

[root@sht-sgmhadoopnn-01 local]# mv mysql-5.6.23-linux-glibc2.5-x86_64 mysql

4.Create group and user

[root@sht-sgmhadoopnn-01 local]# groupadd -g 101 dba

[root@sht-sgmhadoopnn-01 local]# useradd -u 514 -g dba -G root -d /usr/local/mysql mysqladmin

[root@sht-sgmhadoopnn-01 local]# id mysqladmin

uid=514(mysqladmin) gid=101(dba) groups=101(dba),0(root)

生產(chǎn)環(huán)境: 給你的用戶肯定不是root,給jepson/123456 (sudo/不帶sudo)

sudo: 創(chuàng)建一個(gè)mysql服務(wù)的管理的用戶

不 sudo: IT 給你的用戶開啟sudo權(quán)限

為什么要?jiǎng)?chuàng)建mysqladmin/dba沸久?

1.一個(gè)用戶只對(duì)一個(gè)組件

2.dba組

要postgresql骤宣,pgadmin/dba

#[root@sht-sgmhadoopnn-01 local]# passwd mysqladmin

Changing password for user mysqladmin.

New UNIX password:

BAD PASSWORD: it is too simplistic/systematic

Retype new UNIX password:

passwd: all authentication tokens updated successfully.

[root@sht-sgmhadoopnn-01 local]#

## if user mysqladmin is existing,please execute the following command of usermod.

#[root@sht-sgmhadoopnn-01 local]# usermod -u 514 -g dba -G root -d /usr/local/mysql mysqladmin #

## copy 環(huán)境變量配置文件至mysqladmin用戶的home目錄中,為了以下步驟配置個(gè)人環(huán)境變量

[root@sht-sgmhadoopnn-01 local]# cp /etc/skel/.* /usr/local/mysql? ###important

cp: omitting directory `/etc/skel/.'

cp: omitting directory `/etc/skel/..'

cp: omitting directory `/etc/skel/.mozilla'

5.Create /etc/my.cnf(640)

#defualt start: /etc/my.cnf->/etc/mysql/my.cnf->SYSCONFDIR/my.cnf->$MYSQL_HOME/my.cnf-> --defaults-extra-file->~/my.cnf

[root@sht-sgmhadoopnn-01 ~]# vi /etc/my.cnf

[client]

port? ? ? ? ? ? = 3306

socket? ? ? ? ? = /usr/local/mysql/data/mysql.sock

[mysqld]

port? ? ? ? ? ? = 3306

socket? ? ? ? ? = /usr/local/mysql/data/mysql.sock

skip-external-locking

key_buffer_size = 256M

sort_buffer_size = 2M

read_buffer_size = 2M

read_rnd_buffer_size = 4M

query_cache_size= 32M

max_allowed_packet = 16M

myisam_sort_buffer_size=128M

tmp_table_size=32M

table_open_cache = 512

thread_cache_size = 8

wait_timeout = 86400

interactive_timeout = 86400

max_connections = 600

# Try number of CPU's*2 for thread_concurrency

thread_concurrency = 32

#isolation level and default engine

default-storage-engine = INNODB

transaction-isolation = READ-COMMITTED

server-id? = 1

basedir? ? = /usr/local/mysql

datadir? ? = /usr/local/mysql/data

pid-file? ? = /usr/local/mysql/data/hostname.pid

#open performance schema

log-warnings

sysdate-is-now

binlog_format = MIXED

log_bin_trust_function_creators=1

log-error? = /usr/local/mysql/data/hostname.err

log-bin=/usr/local/mysql/arch/mysql-bin

#other logs

#general_log =1

#general_log_file? = /usr/local/mysql/data/general_log.err

#slow_query_log=1

#slow_query_log_file=/usr/local/mysql/data/slow_log.err

#for replication slave

#log-slave-updates

#sync_binlog = 1

#for innodb options

innodb_data_home_dir = /usr/local/mysql/data/

innodb_data_file_path = ibdata1:500M:autoextend

innodb_log_group_home_dir = /usr/local/mysql/arch

innodb_log_files_in_group = 2

innodb_log_file_size = 200M

innodb_buffer_pool_size = 2048M

innodb_additional_mem_pool_size = 50M

innodb_log_buffer_size = 16M

innodb_lock_wait_timeout = 100

#innodb_thread_concurrency = 0

innodb_flush_log_at_trx_commit = 1

innodb_locks_unsafe_for_binlog=1

#innodb io features: add for mysql5.5.8

performance_schema

innodb_read_io_threads=4

innodb-write-io-threads=4

innodb-io-capacity=200

#purge threads change default(0) to 1 for purge

innodb_purge_threads=1

innodb_use_native_aio=on

#case-sensitive file names and separate tablespace

innodb_file_per_table = 1

lower_case_table_names=1

[mysqldump]

quick

max_allowed_packet = 16M

[mysql]

no-auto-rehash

[mysqlhotcopy]

interactive-timeout

[myisamchk]

key_buffer_size = 256M

sort_buffer_size = 256M

read_buffer = 2M

write_buffer = 2M

6.chown and chmod privileges and try first install

[root@sht-sgmhadoopnn-01 local]# chown? mysqladmin:dba /etc/my.cnf

[root@sht-sgmhadoopnn-01 local]# chmod? 640 /etc/my.cnf?

[root@sht-sgmhadoopnn-01 etc]# ll my.cnf

-rw-r----- 1 mysqladmin dba 2201 Aug 25 23:09 my.cnf

[root@sht-sgmhadoopnn-01 local]# chown -R mysqladmin:dba /usr/local/mysql

[root@sht-sgmhadoopnn-01 local]#?

[root@sht-sgmhadoopnn-01 local]# su - mysqladmin

[mysqladmin@sht-sgmhadoopnn-01 ~]$ pwd

/usr/local/mysql

[mysqladmin@sht-sgmhadoopnn-01 ~]$ mkdir arch

第一次安裝

[mysqladmin@sht-sgmhadoopnn-01 ~]$ scripts/mysql_install_db? --user=mysqladmin --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data

Installing MySQL system tables..../bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory #缺少libaio.so 包

###see version

[root@sht-sgmhadoopnn-01 local]# cat /proc/version

Linux version 2.6.18-164.11.1.el5 (mockbuild@builder10.centos.org) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-46)) #1 SMP Wed Jan 20 07:32:21 EST 2010

[root@sht-sgmhadoopnn-01 local]# rpm -qa |grep gcc

libgcc-4.1.2-46.el5_4.2

libgcc-4.1.2-46.el5_4.2

[root@sht-sgmhadoopnn-01 local]# yum -y install libaio

7.Again? install

[mysqladmin@sht-sgmhadoopnn-01 ~]$ scripts/mysql_install_db? --user=mysqladmin --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data

Installing MySQL system tables...2015-08-25 22:49:02 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).

2015-08-25 22:49:02 11713 [Note] InnoDB: Using atomics to ref count buffer pool pages

2015-08-25 22:49:02 11713 [Note] InnoDB: The InnoDB memory heap is disabled

2015-08-25 22:49:02 11713 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins

2015-08-25 22:49:02 11713 [Note] InnoDB: Memory barrier is not used

2015-08-25 22:49:02 11713 [Note] InnoDB: Compressed tables use zlib 1.2.3

2015-08-25 22:49:02 11713 [Note] InnoDB: Using Linux native AIO

2015-08-25 22:49:02 11713 [Note] InnoDB: Using CPU crc32 instructions

2015-08-25 22:49:02 11713 [Note] InnoDB: Initializing buffer pool, size = 128.0M

2015-08-25 22:49:02 11713 [Note] InnoDB: Completed initialization of buffer pool

2015-08-25 22:49:02 11713 [Note] InnoDB: The first specified data file ./ibdata1 did not exist: a new database to be created!

2015-08-25 22:49:02 11713 [Note] InnoDB: Setting file ./ibdata1 size to 12 MB

2015-08-25 22:49:02 11713 [Note] InnoDB: Database physically writes the file full: wait...

2015-08-25 22:49:03 11713 [Note] InnoDB: Setting log file ./ib_logfile101 size to 48 MB

2015-08-25 22:49:07 11713 [Note] InnoDB: Setting log file ./ib_logfile1 size to 48 MB

2015-08-25 22:49:12 11713 [Note] InnoDB: Renaming log file ./ib_logfile101 to ./ib_logfile0

2015-08-25 22:49:12 11713 [Warning] InnoDB: New log files created, LSN=45781

2015-08-25 22:49:12 11713 [Note] InnoDB: Doublewrite buffer not found: creating new

2015-08-25 22:49:12 11713 [Note] InnoDB: Doublewrite buffer created

2015-08-25 22:49:12 11713 [Note] InnoDB: 128 rollback segment(s) are active.

2015-08-25 22:49:12 11713 [Warning] InnoDB: Creating foreign key constraint system tables.

2015-08-25 22:49:12 11713 [Note] InnoDB: Foreign key constraint system tables created

2015-08-25 22:49:12 11713 [Note] InnoDB: Creating tablespace and datafile system tables.

2015-08-25 22:49:12 11713 [Note] InnoDB: Tablespace and datafile system tables created.

2015-08-25 22:49:12 11713 [Note] InnoDB: Waiting for purge to start

2015-08-25 22:49:12 11713 [Note] InnoDB: 5.6.23 started; log sequence number 0

2015-08-25 22:49:13 11713 [Note] Binlog end

2015-08-25 22:49:13 11713 [Note] InnoDB: FTS optimize thread exiting.

2015-08-25 22:49:13 11713 [Note] InnoDB: Starting shutdown...

2015-08-25 22:49:15 11713 [Note] InnoDB: Shutdown completed; log sequence number 1625977

OK

Filling help tables...2015-08-25 22:49:15 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).

2015-08-25 22:49:15 11735 [Note] InnoDB: Using atomics to ref count buffer pool pages

2015-08-25 22:49:15 11735 [Note] InnoDB: The InnoDB memory heap is disabled

2015-08-25 22:49:15 11735 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins

2015-08-25 22:49:15 11735 [Note] InnoDB: Memory barrier is not used

2015-08-25 22:49:15 11735 [Note] InnoDB: Compressed tables use zlib 1.2.3

2015-08-25 22:49:15 11735 [Note] InnoDB: Using Linux native AIO

2015-08-25 22:49:15 11735 [Note] InnoDB: Using CPU crc32 instructions

2015-08-25 22:49:15 11735 [Note] InnoDB: Initializing buffer pool, size = 128.0M

2015-08-25 22:49:15 11735 [Note] InnoDB: Completed initialization of buffer pool

2015-08-25 22:49:15 11735 [Note] InnoDB: Highest supported file format is Barracuda.

2015-08-25 22:49:15 11735 [Note] InnoDB: 128 rollback segment(s) are active.

2015-08-25 22:49:15 11735 [Note] InnoDB: Waiting for purge to start

2015-08-25 22:49:15 11735 [Note] InnoDB: 5.6.23 started; log sequence number 1625977

2015-08-25 22:49:15 11735 [Note] Binlog end

2015-08-25 22:49:15 11735 [Note] InnoDB: FTS optimize thread exiting.

2015-08-25 22:49:15 11735 [Note] InnoDB: Starting shutdown...

2015-08-25 22:49:17 11735 [Note] InnoDB: Shutdown completed; log sequence number 1625987

OK

To start mysqld at boot time you have to copy

support-files/mysql.server to the right place for your system

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !

To do so, start the server, then issue the following commands:

? ./bin/mysqladmin -u root password 'new-password'

? ./bin/mysqladmin -u root -h sht-sgmhadoopnn-01 password 'new-password'

Alternatively you can run:

? ./bin/mysql_secure_installation

which will also give you the option of removing the test

databases and anonymous user created by default.? This is

strongly recommended for production servers.

See the manual for more instructions.

You can start the MySQL daemon with:

? cd . ; ./bin/mysqld_safe &

You can test the MySQL daemon with mysql-test-run.pl

? cd mysql-test ; perl mysql-test-run.pl

Please report any problems at http://bugs.mysql.com/

The latest information about MySQL is available on the web at

? http://www.mysql.com

Support MySQL by buying support/licenses at http://shop.mysql.com

New default config file was created as ./my.cnf and

will be used by default by the server when you start it.

You may edit this file to change server settings

WARNING: Default config file /etc/my.cnf exists on the system

This file will be read by default by the MySQL server

If you do not want to use this, either remove it, or use the

--defaults-file argument to mysqld_safe when starting the server

8.Configure mysql service and boot auto start

[root@sht-sgmhadoopnn-01 ~]# cd /usr/local/mysql

#將服務(wù)文件拷貝到init.d下,并重命名為mysql

[root@sht-sgmhadoopnn-01 mysql]# cp support-files/mysql.server /etc/rc.d/init.d/mysql

#賦予可執(zhí)行權(quán)限

[root@sht-sgmhadoopnn-01 mysql]# chmod +x /etc/rc.d/init.d/mysql

#刪除服務(wù)

[root@sht-sgmhadoopnn-01 mysql]# chkconfig --del mysql

#添加服務(wù)

[root@sht-sgmhadoopnn-01 mysql]# chkconfig --add mysql

[root@sht-sgmhadoopnn-01 mysql]# chkconfig --level 345 mysql on

9.Start mysql and to view process and listening

[root@sht-sgmhadoopnn-01 mysql]# su - mysqladmin

[mysqladmin@sht-sgmhadoopnn-01 ~]$ pwd

/usr/local/mysql

[mysqladmin@sht-sgmhadoopnn-01 ~]$ rm -rf my.cnf

[mysqladmin@sht-sgmhadoopnn-01 ~]$ bin/mysqld_safe &? ?

不要忘記,按回車鍵

先卸載

[root@rzdatahadoop001 lib]# rpm --nodeps -e mysql-libs-5.1.71-1.el6.x86_64

改權(quán)限

[root@rzdatahadoop001 mysql]# chmod -R 757 /var/log

[1] 11802

[mysqladmin@sht-sgmhadoopnn-01 ~]$ 150825 22:53:38 mysqld_safe Logging to '/usr/local/mysql/data/hostname.err'.

150825 22:53:38 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data/

150825 22:53:39 mysqld_safe mysqld from pid file /usr/local/mysql/data/hostname.pid ended

[mysqladmin@sht-sgmhadoopnn-01 ~]$

[mysqladmin@sht-sgmhadoopnn-01 ~]$ ps -ef|grep mysqld

514? ? ? 6247? 6219? 0 17:30 pts/1? ? 00:00:00 /bin/sh /usr/local/mysql/bin/mysqld_safe

514? ? ? 6902? 6247? 2 17:30 pts/1? ? 00:00:01 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --plugin-dir=/usr/local/mysql/lib/plugin --log-error=/usr/local/mysql/data/hostname.err --pid-file=/usr/local/mysql/data/hostname.pid --socket=/usr/local/mysql/data/mysql.sock --port=3306

514? ? ? 6927? 6219? 0 17:31 pts/1? ? 00:00:00 grep mysqld

[mysqladmin@sht-sgmhadoopnn-01 ~]$ netstat -tulnp | grep mysql

(Not all processes could be identified, non-owned process info

will not be shown, you would have to be root to see it all.)

tcp? ? ? ? 0? ? ? 0 :::3306? ? ? ? ? ? ? ? ? ? :::*? ? ? ? ? ? ? ? ? ? ? ? LISTEN? ? ? 11541/mysqld? ? ? ?

[root@sht-sgmhadoopnn-01 local]# service mysql status

MySQL running (21507)? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? [? OK? ]

10.Login mysql

[mysqladmin@sht-sgmhadoopnn-01 ~]$ mysql

Welcome to the MySQL monitor.? Commands end with ; or \g.

Your MySQL connection id is 1

Server version: 5.6.23-log MySQL Community Server (GPL)

Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> show databases;

+--------------------+

| Database? ? ? ? ? |

+--------------------+

| information_schema |

| mysql? ? ? ? ? ? ? |

| performance_schema |

| test? ? ? ? ? ? ? |

+--------------------+

4 rows in set (0.00 sec)

11.Update password and Purge user

mysql> use mysql

Database changed

mysql> update user set password=password('123456') where user='root';

Query OK, 4 rows affected (0.00 sec)

Rows matched: 4? Changed: 4? Warnings: 0

mysql> select host,user,password from user;

+----------------+------+-------------------------------------------+

| host? ? ? ? ? | user | password? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? |

+----------------+------+-------------------------------------------+

| localhost? ? ? | root | *6340BE3C15D246B0D74BAF3F135915ED19E0069F |

| sht-sgmhadoopnn-01 | root | *6340BE3C15D246B0D74BAF3F135915ED19E0069F |

| 127.0.0.1? ? ? | root | *6340BE3C15D246B0D74BAF3F135915ED19E0069F |

| ::1? ? ? ? ? ? | root | *6340BE3C15D246B0D74BAF3F135915ED19E0069F |

| localhost? ? ? |? ? ? |? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? |

| sht-sgmhadoopnn-01 |? ? ? |? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? |

+----------------+------+-------------------------------------------+

6 rows in set (0.00 sec)

mysql> delete from user where user='';

mysql> select host,user,password from user;

+----------------+------+-------------------------------------------+

| host? ? ? ? ? | user | password? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? |

+----------------+------+-------------------------------------------+

| localhost? ? ? | root | *6340BE3C15D246B0D74BAF3F135915ED19E0069F |

| sht-sgmhadoopnn-01 | root | *6340BE3C15D246B0D74BAF3F135915ED19E0069F |

| 127.0.0.1? ? ? | root | *6340BE3C15D246B0D74BAF3F135915ED19E0069F |

| ::1? ? ? ? ? ? | root | *6340BE3C15D246B0D74BAF3F135915ED19E0069F |

+----------------+------+-------------------------------------------+

4 rows in set (0.00 sec)

mysql> flush privileges;

12.Configure .bash_profile

[mysqladmin@sht-sgmhadoopnn-01 ~]$ cat .bash_profile

# .bash_profile

# Get the aliases and functions

if [ -f ~/.bashrc ]; then

? ? ? ? . ~/.bashrc

fi

# User specific environment and startup programs

MYSQL_BASE=/usr/local/mysql

export MYSQL_BASE

PATH=$PATH:${MYSQL_BASE}/bin:/usr/kerberos/bin:/opt/bin:/bin:/usr/bin:/usr/local/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/local/mysql

export PATH

PS1=`uname -n`":"'$USER'":"'$PWD'":>"; export PS1

alias l="ls -ltr"

alias la="ls -la"

alias d="df -lk"

#alias rm="rm -i"

alias bg="ps -aef|grep mysql"

alias base="cd /usr/local/mysql"

alias bin="cd //usr/local/mysql/bin"

alias dba="cd /usr/local/mysql/dba"

alias sh="cd /usr/local/mysql/dba/sh"

alias sql="cd /usr/local/mysql/dba/sql"

alias config="cd /usr/local/mysql/dba/config"

alias dbalog="cd /usr/local/mysql/dba/log"

alias arch="cd /usr/local/mysql/arch"

alias data="cd /usr/local/mysql/data"

## endendend

Remark:

Error1: File '/usr/local/mysql/arch/mysql-bin.index' not found (Errcode: 13)

? test2.localdomain:mysqladmin:/usr/local/mysql/arch:>chmod 755 *

? test2.localdomain:mysqladmin:/usr/local/mysql/arch:>chown –R mysqladmin:dba *

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末兄渺,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌捣域,老刑警劉巖,帶你破解...
    沈念sama閱讀 217,185評(píng)論 6 503
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件宴合,死亡現(xiàn)場(chǎng)離奇詭異焕梅,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)卦洽,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,652評(píng)論 3 393
  • 文/潘曉璐 我一進(jìn)店門贞言,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人阀蒂,你說我怎么就攤上這事该窗。” “怎么了脂新?”我有些...
    開封第一講書人閱讀 163,524評(píng)論 0 353
  • 文/不壞的土叔 我叫張陵挪捕,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我争便,道長(zhǎng)级零,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,339評(píng)論 1 293
  • 正文 為了忘掉前任滞乙,我火速辦了婚禮奏纪,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘斩启。我一直安慰自己序调,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,387評(píng)論 6 391
  • 文/花漫 我一把揭開白布兔簇。 她就那樣靜靜地躺著发绢,像睡著了一般。 火紅的嫁衣襯著肌膚如雪垄琐。 梳的紋絲不亂的頭發(fā)上边酒,一...
    開封第一講書人閱讀 51,287評(píng)論 1 301
  • 那天,我揣著相機(jī)與錄音狸窘,去河邊找鬼墩朦。 笑死,一個(gè)胖子當(dāng)著我的面吹牛翻擒,可吹牛的內(nèi)容都是我干的氓涣。 我是一名探鬼主播牛哺,決...
    沈念sama閱讀 40,130評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼劳吠!你這毒婦竟也來了引润?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 38,985評(píng)論 0 275
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤赴背,失蹤者是張志新(化名)和其女友劉穎椰拒,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體凰荚,經(jīng)...
    沈念sama閱讀 45,420評(píng)論 1 313
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,617評(píng)論 3 334
  • 正文 我和宋清朗相戀三年褒脯,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了便瑟。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 39,779評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡番川,死狀恐怖到涂,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情颁督,我是刑警寧澤践啄,帶...
    沈念sama閱讀 35,477評(píng)論 5 345
  • 正文 年R本政府宣布,位于F島的核電站沉御,受9級(jí)特大地震影響屿讽,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜吠裆,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,088評(píng)論 3 328
  • 文/蒙蒙 一伐谈、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧试疙,春花似錦诵棵、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,716評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至怀跛,卻和暖如春距贷,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背敌完。 一陣腳步聲響...
    開封第一講書人閱讀 32,857評(píng)論 1 269
  • 我被黑心中介騙來泰國(guó)打工储耐, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人滨溉。 一個(gè)月前我還...
    沈念sama閱讀 47,876評(píng)論 2 370
  • 正文 我出身青樓什湘,卻偏偏與公主長(zhǎng)得像长赞,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子闽撤,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,700評(píng)論 2 354

推薦閱讀更多精彩內(nèi)容

  • 【MySQL】Linux下MySQL 5.5、5.6和5.7的RPM闸餐、二進(jìn)制和源碼安裝 1.1BLOG文檔結(jié)構(gòu)圖 ...
    小麥苗DB寶閱讀 10,540評(píng)論 0 31
  • jdk1.8安裝饱亮,tar解壓,用戶組發(fā)生變化舍沙,需要調(diào)整: 首先刪除操作系統(tǒng)自帶的jdk近上, 使用awk拼接執(zhí)行的命令...
    ly稻草閱讀 525評(píng)論 0 1
  • 1)介紹 PerconaXtraBackup(簡(jiǎn)稱PXB)是Percona公司開發(fā)的一個(gè)用于MySQL數(shù)據(jù)庫(kù)物理熱...
    溫東閱讀 2,504評(píng)論 0 6
  • 昨天,我又一次想他拂铡,去翻他朋友圈壹无,看見是一條橫線,我以為網(wǎng)速不好感帅,后來關(guān)了重新進(jìn)入斗锭,發(fā)現(xiàn)還是一條橫線,我當(dāng)即知道失球,...
    初心88閱讀 307評(píng)論 0 0
  • CSS3 背景 CSS3中包含幾個(gè)新的背景屬性岖是,提供更大背景元素控制。在本章您將了解以下背景屬性: backgro...
    hx永恒之戀閱讀 246評(píng)論 0 2