MySQL5.7三种单实例部署方式

1、MySQL单实例部署

MySQL官方网址:https://www.mysql.com/

MySQL有多种安装方式:Yum存储库安装、二进制安装、RPM安装包安装。在开始安装之前、我们先来进行基础系统初始化。

1.1、系统初始化

# 配置主机名称
hostnamectl --static --transient  set-hostname mysql-01

# 安装依赖包
yum install -y epel-release
yum install -y chrony conntrack ipvsadm ipset jq iptables curl sysstat libseccomp wget socat git

# 关闭防火墙
systemctl stop firewalld && systemctl disable firewalld
iptables -F && iptables -X && iptables -F -t nat && iptables -X -t nat && iptables -P FORWARD ACCEPT

# 关闭swap分区
swapoff -a && sed -i '/ swap / s/^\(.*\)$/#\1/g' /etc/fstab

# 关闭SELinux
setenforce 0 && sed -i 's/^SELINUX=.*/SELINUX=disabled/' /etc/selinux/config

# 关闭无关服务
systemctl stop postfix && systemctl disable postfix

默认的 CentOS7 存储库是没有MySQL数据库的、我们需要把MySQL存储库添加到CentOS7中。

# 默认的CentOS7存储库
[root@mysql-01 ~]# yum repolist
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirrors.163.com
 * epel: mirrors.ustc.edu.cn
 * extras: mirrors.163.com
 * updates: mirrors.163.com
repo id           repo name                                            status
base/7/x86_64     CentOS-7 - Base                                      10,072
epel/x86_64       Extra Packages for Enterprise Linux 7 - x86_64       13,550
extras/7/x86_64   CentOS-7 - Extras                                    453
updates/7/x86_64  CentOS-7 - Updates                                   1,729
repolist: 25,804

1.2、Yum Repository安装MySQL(RPM)

Yum存储库链接:https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm

我们去MySQL官方网站把Yum存储库文件下载到服务器上。最新的Yum存储库可以安装MySQL所有的软件版本。

image-20210308100057846

image-20210308100131931

image-20210308100158902

image-20210308100236606

image-20210308100303287

# 下载MySQL存储库
wget https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm
[root@mysql-01 ~]# wget https://repo.mysql.com//mysql80-community-release-el7-3.noarch.rpm
--2021-03-08 09:47:21--  https://repo.mysql.com//mysql80-community-release-el7-3.noarch.rpm
Resolving repo.mysql.com (repo.mysql.com)... 23.50.239.110
Connecting to repo.mysql.com (repo.mysql.com)|23.50.239.110|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 26024 (25K) [application/x-redhat-package-manager]
Saving to: ‘mysql80-community-release-el7-3.noarch.rpm’

100%[=========================================================================>] 26,024      --.-K/s   in 0.09s   

2021-03-08 09:47:22 (293 KB/s) - ‘mysql80-community-release-el7-3.noarch.rpm’ saved [26024/26024]

# 安装MySQL存储库
[root@mysql-01 ~]# rpm -Uvh mysql80-community-release-el7-3.noarch.rpm 
warning: mysql80-community-release-el7-3.noarch.rpm: Header V3 DSA/SHA1 Signature, key ID 5072e1f5: NOKEY
Preparing...                          ################################# [100%]
Updating / installing...
   1:mysql80-community-release-el7-3  ################################# [100%]
[root@mysql-01 ~]# 

# 更新CentOS7存储库
[root@mysql-01 ~]# yum makecache
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
epel/x86_64/metalink                                                                                       | 5.5 kB  00:00:00     
 * base: mirrors.163.com
 * epel: mirrors.ustc.edu.cn
......

更新完存储库之后再次执行 yum repolist 命令我们可以看到存储库里面新增了MySQL数据库的存储库。

[root@mysql-01 ~]# yum repolist
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirrors.163.com
 * epel: mirrors.ustc.edu.cn
 * extras: mirrors.163.com
 * updates: mirrors.163.com
mysql-connectors-community                                     | 2.6 kB  00:00:00     
mysql-tools-community                                          | 2.6 kB  00:00:00     
mysql80-community                                              | 2.6 kB  00:00:00     
(1/3): mysql-tools-community/x86_64/primary_db                 |  85 kB  00:00:00     
(2/3): mysql-connectors-community/x86_64/primary_db            |  72 kB  00:00:00     
(3/3): mysql80-community/x86_64/primary_db                     | 142 kB  00:00:00     
repo id                           repo name                                           status
base/7/x86_64                     CentOS-7 - Base                                     10,072
epel/x86_64                       Extra Packages for Enterprise Linux 7 - x86_64      13,550
extras/7/x86_64                   CentOS-7 - Extras                                   453
mysql-connectors-community/x86_64 MySQL Connectors Community                          185
mysql-tools-community/x86_64      MySQL Tools Community                               123
mysql80-community/x86_64          MySQL 8.0 Community Server                          229
updates/7/x86_64                  CentOS-7 - Updates                                  1,729
repolist: 26,341

默认情况下,默认启用最新GA系列(当前为MySQL 8.0)的子存储库,而所有其他系列(例如,MySQL 5.7系列)的子存储库均被禁用。使用此命令可查看MySQL Yum存储库中的所有子存储库,并查看已启用或禁用了哪些子存储库。

[root@mysql-01 ~]# yum repolist all | grep mysql
mysql-cluster-7.5-community/x86_64  MySQL Cluster 7.5 Community  disabled
mysql-cluster-7.5-community-source  MySQL Cluster 7.5 Community  disabled
mysql-cluster-7.6-community/x86_64  MySQL Cluster 7.6 Community  disabled
mysql-cluster-7.6-community-source  MySQL Cluster 7.6 Community  disabled
mysql-cluster-8.0-community/x86_64  MySQL Cluster 8.0 Community  disabled
mysql-cluster-8.0-community-source  MySQL Cluster 8.0 Community  disabled
mysql-connectors-community/x86_64   MySQL Connectors Community   enabled:    185
mysql-connectors-community-source   MySQL Connectors Community - disabled
mysql-tools-community/x86_64        MySQL Tools Community        enabled:    123
mysql-tools-community-source        MySQL Tools Community - Sour disabled
mysql-tools-preview/x86_64          MySQL Tools Preview          disabled
mysql-tools-preview-source          MySQL Tools Preview - Source disabled
mysql55-community/x86_64            MySQL 5.5 Community Server   disabled
mysql55-community-source            MySQL 5.5 Community Server - disabled
mysql56-community/x86_64            MySQL 5.6 Community Server   disabled
mysql56-community-source            MySQL 5.6 Community Server - disabled
mysql57-community/x86_64            MySQL 5.7 Community Server   disabled
mysql57-community-source            MySQL 5.7 Community Server - disabled
mysql80-community/x86_64            MySQL 8.0 Community Server   enabled:    229
mysql80-community-source            MySQL 8.0 Community Server - disabled
[root@mysql-01 ~]# 

从上面我们可以看到当前除了 mysql80-community/x86_64 、其他的MySQL版本都已经被禁止了;这里我们需要安装5.7版本的,所以我们把 MySQL 8.0 进行禁用,然后再启用 MySQL 5.7 版本。

# 禁用MySQL 8.0
yum-config-manager --disable mysql80-community

# 启用MySQL 5.7
yum-config-manager --enable mysql57-community

# 注:运行 yum-config-manager命令提示 -bash: yum-config-manager: command not found 命令未找到,因为 yum-config-manager 在 yum-utils包里面;由于系统默认没有这个命令,需要另外进行安装。
yum -y install yum-utils

然后我们执行下面的命令安装 MySQL 5.7 数据库

# 安装MySQL数据库
yum install mysql-community-server

Yum安装完成以后、MySQL默认的数据目录在 /var/lib/mysql 里面;这里我们通过下面的命令来启动并初始化 MySQL(初始化过程中MySQL会在 /var/lib/mysql 目录自动生成数据文件) :

[root@mysql-01 ~]# cd /var/lib/mysql
[root@mysql-01 mysql]# ls
# 启动并初始化MySQL
[root@mysql-01 mysql]# systemctl start mysqld
[root@mysql-01 mysql]# ls
auto.cnf    client-cert.pem  ibdata1      ibtmp1      mysql.sock.lock     public_key.pem   sys
ca-key.pem  client-key.pem   ib_logfile0  mysql       performance_schema  server-cert.pem
ca.pem      ib_buffer_pool   ib_logfile1  mysql.sock  private_key.pem     server-key.pem

# 设置MySQL开机启动
[root@mysql-01 mysql]# systemctl enable mysqld
[root@mysql-01 mysql]# mysql --version
mysql  Ver 14.14 Distrib 5.7.33, for Linux (x86_64) using  EditLine wrapper
[root@mysql-01 mysql]# 

# 查看MySQL服务器初始化的时候会创建 'root@localhost' 超级用户账号;设置超级用户的密码并将其存储在错误日志文件中。
[root@mysql-01 mysql]# grep 'password' /var/log/mysqld.log 
2021-03-08T02:05:35.569352Z 1 [Note] A temporary password is generated for root@localhost: X!;awTXzb6(d
2021-03-08T02:05:54.221382Z 2 [Note] Access denied for user 'root'@'localhost' (using password: NO)
[root@mysql-01 mysql]#

安装完成之后我们通过 mysql –version 命令查看一下MySQL数据库版本、并用上面查询到的默认密码登录数据库;我们还需要把默认的数据库密码修改掉、然后授权用户可以远程访问、具体操作如下:

# 查看MySQL版本
[root@mysql-01 ~]# mysql --version
mysql  Ver 14.14 Distrib 5.7.33, for Linux (x86_64) using  EditLine wrapper
[root@mysql-01 ~]# mysql -u root -p 
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.7.33

Copyright (c) 2000, 2021, Oracle and/or its affiliates.

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;
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
# 更新数据库密码
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'z0ukun@2021';
Query OK, 0 rows affected (0.00 sec)
# 查看数据库
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
4 rows in set (0.00 sec)

# 进入mysql数据库
mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> select host,user from user;
+-----------+---------------+
| host      | user          |
+-----------+---------------+
| localhost | mysql.session |
| localhost | mysql.sys     |
| localhost | root          |
+-----------+---------------+
3 rows in set (0.00 sec)
# 注:用 select host ,user from user; 命令发现root用户的host是localhost,localhost 表示只能进行本地访问,不能进行远程连接;

# 修改root用户的host权限为%
mysql> update user set host = "%" where user = "root";
Query OK, 1 row affected (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 0

# 刷新权限
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql> exit;
Bye
[root@mysql-01 ~]# 

然后我们用 Navicat 测试连接、MySQL现在已经可以正常连接数据库了。

image-20210308132100975

1.3、二进制预编译安装(Generic)

预编译版下载地址:https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.33-linux-glibc2.12-x86_64.tar.gz

前面我们通过Yum存储库的方式安装了MySQL、安装过程还是非常简单的;但是正是因为这种简单的安装过程导致MySQL的自定义程度较低;比如我们如何定义MySQL的安装参数、MySQL的安装位置等。下面我们再一起来看看如何通过二进制进行预编译版本安装。

这里我们去MySQL官网下载对应的Linux – Generic预编译版即可:

[root@mysql-01 ~]# rpm -q glibc
glibc-2.17-323.el7_9.x86_64
glibc-2.17-323.el7_9.i686
[root@mysql-01 ~]# wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.33-linux-glibc2.12-x86_64.tar.gz
--2021-03-08 13:52:21--  https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.33-linux-glibc2.12-x86_64.tar.gz
Resolving dev.mysql.com (dev.mysql.com)... 137.254.60.11
Connecting to dev.mysql.com (dev.mysql.com)|137.254.60.11|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://cdn.mysql.com//Downloads/MySQL-5.7/mysql-5.7.33-linux-glibc2.12-x86_64.tar.gz [following]
--2021-03-08 13:52:22--  https://cdn.mysql.com//Downloads/MySQL-5.7/mysql-5.7.33-linux-glibc2.12-x86_64.tar.gz
Resolving cdn.mysql.com (cdn.mysql.com)... 23.45.53.26
Connecting to cdn.mysql.com (cdn.mysql.com)|23.45.53.26|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 661718255 (631M) [application/x-tar-gz]
Saving to: ‘mysql-5.7.33-linux-glibc2.12-x86_64.tar.gz’

100%[========================================================================================>] 661,718,255 4.76MB/s   in 2m 13s 

2021-03-08 13:54:36 (4.73 MB/s) - ‘mysql-5.7.33-linux-glibc2.12-x86_64.tar.gz’ saved [661718255/661718255]

[root@mysql-01 ~]# 

微信图片_20210308134826

Yum安装之所以简单、是因为MySQL自动帮我们完成了用户组的创建、解包、安装、MySQL初始化等工作;那么如果需要自己进行二进制预编译安装、就需要手动去执行这些操作。

# 创建用户和用户组
groupadd mysql && useradd -r -g mysql -s /bin/false mysql

# 我们把mysql安装到 /usr/local目录下面
cd /usr/local && tar -zxvf /root/mysql-5.7.33-linux-glibc2.12-x86_64.tar.gz
[root@mysql-01 local]# ls
bin  etc  games  include  lib  lib64  libexec  mysql-5.7.33-linux-glibc2.12-x86_64  sbin  share  src
[root@mysql-01 local]# 

# 软连接mysql(也可以直接通过mv、copy等命令操作)
ln -s mysql-5.7.33-linux-glibc2.12-x86_64 mysql

注:这里我们没有直接去修改 mysql-5.7.33-linux-glibc2.12-x86_64 目录的名称、而是通过软连接的方式来生成一个mysql连接;这样做的目的是为了后期多版本共存或者方便版本升级。

现在我们可以开始MySQL数据库初始化了、初始化没有编译安装的过程;这里我们新建一个mysql-files目录、在初始化过程中会有相关文件写入到这个目录中、所以我们对这个目录进行授权。

[root@mysql-01 local]# pwd
/usr/local
[root@mysql-01 local]# cd mysql && mkdir mysql-files && chmod 750 mysql-files
# 授权当前目录所属用户和所属用户组
[root@mysql-01 mysql]# chown -R mysql . && chgrp -R mysql .
# 执行初始化命令并指定mysql软件目录和数据目录
[root@mysql-01 mysql]# bin/mysqld --initialize --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data
2021-03-08T11:49:15.320030Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2021-03-08T11:49:18.000767Z 0 [Warning] InnoDB: New log files created, LSN=45790
2021-03-08T11:49:18.451042Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.
2021-03-08T11:49:18.535804Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: 5098f355-8004-11eb-b5c3-005000000100.
2021-03-08T11:49:18.553911Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.
2021-03-08T11:49:19.660769Z 0 [Warning] CA certificate ca.pem is self signed.
# 这里生成了一个默认的临时密码(这个密码要保存一下、后面会用到)
2021-03-08T11:49:19.885793Z 1 [Note] A temporary password is generated for root@localhost: OY;kalp8J8xp
# 配置SSL加密连接
[root@mysql-01 mysql]# bin/mysql_ssl_rsa_setup --datadir=/usr/local/mysql/data
# 再次修改当前目录所属用户和所属用户组
[root@mysql-01 mysql]# chown -R root . && chown -R mysql data mysql-files
[root@mysql-01 mysql]# 

# MySQL5.7版本以后就不再提供mysql.cnf配置文件模板了
[root@mysql-01 support-files]# cd ..
[root@mysql-01 mysql]# ls
bin  data  docs  include  lib  LICENSE  man  mysql-files  README  share  support-files
[root@mysql-01 mysql]# cd support-files/
[root@mysql-01 support-files]# ls
magic  mysqld_multi.server  mysql-log-rotate  mysql.server
# 这里我们手动创建/etc/my.cnf配置文件并插入如下内容
[root@mysql-01 support-files]# vi /etc/my.cnf
[root@mysql-01 support-files]# cat /etc/my.cnf 
[mysqld]
basedir=/usr/local/mysql
datadir=/usr/local/mysql/data

# 启动MySQL、这里有两种方法:
# 方法一
[root@mysql-01 support-files]# bin/mysqld_safe --user=mysql &

# 方法二
[root@mysql-01 mysql]# cp support-files/mysql.server /etc/init.d/mysqld
[root@mysql-01 mysql]# chkconfig --add mysqld
[root@mysql-01 mysql]# chkconfig mysqld on
[root@mysql-01 mysql]# systemctl start mysqld
[root@mysql-01 mysql]# systemctl status mysqld
● mysqld.service - LSB: start and stop MySQL
   Loaded: loaded (/etc/rc.d/init.d/mysqld; bad; vendor preset: disabled)
   Active: active (running) since Mon 2021-03-08 20:09:12 CST; 5s ago
     Docs: man:systemd-sysv-generator(8)
  Process: 9864 ExecStart=/etc/rc.d/init.d/mysqld start (code=exited, status=0/SUCCESS)
   CGroup: /system.slice/mysqld.service
           ├─9875 /bin/sh /usr/local/mysql/bin/mysqld_safe --datadir=/usr/local/mysql/data --pid-file=/usr/local/mysql/data/mysql-01.pid
           └─9987 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --plugin-dir=/usr/local/mysql/lib/plugin --user=mysql --log-error=mysql-01.err --pid-file=/usr...

Mar 08 20:09:09 mysql-01 systemd[1]: Starting LSB: start and stop MySQL...
Mar 08 20:09:09 mysql-01 mysqld[9864]: Starting MySQL.Logging to '/usr/local/mysql/data/mysql-01.err'.
Mar 08 20:09:12 mysql-01 mysqld[9864]: .. SUCCESS!
Mar 08 20:09:12 mysql-01 systemd[1]: Started LSB: start and stop MySQL.
[root@mysql-01 mysql]# netstat -nltp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name    
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      925/sshd            
tcp6       0      0 :::22                   :::*                    LISTEN      925/sshd            
tcp6       0      0 :::3306                 :::*                    LISTEN      9987/mysqld         
[root@mysql-01 mysql]#

MySQL启动以后我们使用mysql命令进入数据库发现系统提示我们 command not found ;这是因为系统环境变量里面并没有关于MySQL启动脚本的环境变量、我们重新对 /etc/profile 文件赋值以后再次使用 mysql 就可以正常使用了(密码为前面的临时密码):

[root@mysql-01 mysql]# mysql
-bash: mysql: command not found
[root@mysql-01 mysql]# echo "export PATH=$PATH:/usr/local/mysql/bin" >> /etc/profile
[root@mysql-01 mysql]# source /etc/profile
[root@mysql-01 mysql]# mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.33

Copyright (c) 2000, 2021, Oracle and/or its affiliates.

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> 

注:如果这里不想通过环境变量赋值的方式来使用mysql命令、也可以通过下面的方式来执行mysql命令:

[root@mysql-01 mysql]# /usr/local/mysql/bin/mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.33

Copyright (c) 2000, 2021, Oracle and/or its affiliates.

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.

# 剩下的操作就和Yum安装MySQL数据库的操作是一样的啦、这里就不再详细介绍了。
mysql> show databases;
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'z0ukun@2021';
Query OK, 0 rows affected (0.00 sec)

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
4 rows in set (0.01 sec)

mysql> select version();
+-----------+
| version() |
+-----------+
| 5.7.33    |
+-----------+
1 row in set (0.00 sec)

mysql> 

如果你发现前面的数据库安装的有问题想要进行初始化可以执行下面的命令:

[root@mysql-01 mysql]# yum install psmisc -y 
[root@mysql-01 mysql]# killall -9 mysqld
[root@mysql-01 mysql]# rm -rf /usr/local/mysql/data
[root@mysql-01 mysql]# chown -R mysql . && chgrp -R mysql .
[root@mysql-01 mysql]# bin/mysqld --initialize --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data
[root@mysql-01 mysql]# /bin/mysql_ssl_rsa_setup
[root@mysql-01 mysql]# chown -R root .
[root@mysql-01 mysql]# chown -R mysql data mysql-files

至此、二进制预编译安装MySQL就已经完成了。

1.4、源码包安装(Source Code)

源码包下载地址:https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-boost-5.7.33.tar.gz

现在我们再一起来看看如何通过源码包编译安装、源码包安装需要用到几个工具:cmake、C++、GCC等工具库。

yum install ncurses ncurses-devel openssl-devel bison gcc gcc-c++ make cmake -y
[root@mysql-01 ~]# groupadd mysql && useradd -r -g mysql -s /bin/false mysql
[root@mysql-01 ~]# tar -zxvf mysql-boost-5.7.33.tar.gz && cd mysql-5.7.33
[root@mysql-01 mysql-5.7.33]#


# 这里一定要下载带boost的版本、否则CMAKE的时候会报boost错误
[root@mysql-01 mysql-5.7.33]# cmake . \
-DWITH_BOOST=boost/ \
-DCMAKE_INSTALL_PREFIX=/usr/local/mysql \
-DSYSCONFDIR=/etc \
-DMYSQL_DATADIR=/usr/local/mysql/data \
-DINSTALL_MANDIR=/usr/share/man \
-DMYSQL_TCP_PORT=3306 \
-DMYSQL_UNIX_ADDR=/tmp/mysql.sock \
-DDEFAULT_CHARSET=utf8 \
-DEXTRA_CHARSET=all \
-DDEFAULT_COLLATION=utf8_general_ci \
-DWITH_READLINE=1 \
-DWITH_SSL=system \
-DWITH_EMBEDDED_SERVER=1 \
-DENABLED_LOCAL_INFILE=1 \
-DWITH_INNOBASE_STORAGE_ENGINE=1

# CMAKE完成以后、我们就可以开始make编译了(make的过程较长、过程略过)
[root@mysql-01 mysql-5.7.33]# make
[root@mysql-01 mysql-5.7.33]# make install

# 初始化数据库
[root@mysql-01 mysql-5.7.33]# find / -name mysql
/run/lock/subsys/mysql
/etc/selinux/targeted/active/modules/100/mysql
/root/mysql-5.7.33/client/mysql
/root/mysql-5.7.33/include/mysql
/root/mysql-5.7.33/rapid/plugin/group_replication/include/mysql
/root/mysql-5.7.33/rapid/plugin/group_replication/libmysqlgcs/include/mysql
/usr/local/mysql-5.7.33-linux-glibc2.12-x86_64/bin/mysql
/usr/local/mysql-5.7.33-linux-glibc2.12-x86_64/include/mysql
/usr/local/mysql
[root@mysql-01 mysql-5.7.33]# cd /usr/local/mysql
[root@mysql-01 local]# mkdir mysql-files && chmod 750 mysql-files
# 授权当前目录所属用户和所属用户组
[root@mysql-01 mysql]# chown -R mysql . && chgrp -R mysql .
# 执行初始化命令并指定mysql软件目录和数据目录
[root@mysql-01 mysql]# 
[root@mysql-01 mysql]# ls
bin  docs  include  lib  LICENSE  man  mysql-files  mysql-test  README  README-test  share  support-files
[root@mysql-01 mysql]# bin/mysqld --initialize --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data
2021-03-08T14:38:01.938587Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2021-03-08T14:38:03.354165Z 0 [Warning] InnoDB: New log files created, LSN=45790
2021-03-08T14:38:03.550694Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.
2021-03-08T14:38:03.602296Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: e39b7daf-801b-11eb-9073-005000000100.
2021-03-08T14:38:03.629377Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.
2021-03-08T14:38:03.959177Z 0 [Warning] CA certificate ca.pem is self signed.
# 初始化数据库生成的临时密码
2021-03-08T14:38:04.016088Z 1 [Note] A temporary password is generated for root@localhost: 9UGZ_fE1oS2,
[root@mysql-01 mysql]# ls
bin  data  docs  include  lib  LICENSE  man  mysql-files  mysql-test  README  README-test  share  support-files
[root@mysql-01 mysql]# chown -R root . && chown -R mysql data mysql-files

# 添加MySQL数据库到启动项并启动数据库
[root@mysql-01 mysql]# cp support-files/mysql.server /etc/init.d/mysqld
[root@mysql-01 mysql]# chkconfig --add mysqld
[root@mysql-01 mysql]# chkconfig mysqld on
[root@mysql-01 mysql]# systemctl start mysql
[root@mysql-01 mysql]# systemctl status mysql
● mysqld.service - LSB: start and stop MySQL
   Loaded: loaded (/etc/rc.d/init.d/mysqld; bad; vendor preset: disabled)
   Active: active (running) since Tue 2021-03-09 08:15:17 CST; 5min ago
     Docs: man:systemd-sysv-generator(8)
  Process: 7004 ExecStop=/etc/rc.d/init.d/mysqld stop (code=exited, status=0/SUCCESS)
  Process: 7025 ExecStart=/etc/rc.d/init.d/mysqld start (code=exited, status=0/SUCCESS)
   CGroup: /system.slice/mysqld.service
           ├─7036 /bin/sh /usr/local/mysql/bin/mysqld_safe --datadir=/usr/local/mysql/data --pid-file=/usr/local/mysql/data/mys...
           └─7148 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --plugin-dir=/usr/loca...

Mar 09 08:15:16 mysql-01 systemd[1]: Starting LSB: start and stop MySQL...
Mar 09 08:15:16 mysql-01 mysqld[7025]: Starting MySQL.Logging to '/usr/local/mysql/data/mysql-01.err'.
Mar 09 08:15:17 mysql-01 mysqld[7025]: SUCCESS!
Mar 09 08:15:17 mysql-01 systemd[1]: Started LSB: start and stop MySQL.
[root@mysql-01 mysql]# netstat -nltp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name    
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      925/sshd            
tcp6       0      0 :::22                   :::*                    LISTEN      925/sshd            
tcp6       0      0 :::3306                 :::*                    LISTEN      7148/mysqld         
[root@mysql-01 mysql]#

# 剩下的操作就和前面的操作一样啦、请小伙伴们自行查看
[root@mysql-01 mysql]# mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.33

Copyright (c) 2000, 2021, Oracle and/or its affiliates.

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>

1.5、MySQL常用命令

# 启动mysql服务
systemctl start mysqld.service

# 停止mysql服务
systemctl stop mysqld.service

# 重启mysql服务
systemctl restart mysqld.service

# 查看mysql服务当前状态
systemctl status mysqld.service

# 设置mysql服务开机自启动
systemctl enable mysqld.service

# 停止mysql服务开机自启动
systemctl disable mysqld.service

# 查看所有已启动的服务
systemctl list-units --type=service

推荐文章

318条评论

  1. Asking questions are truly good thiing if you
    are not understanding anything totally, however this ppost gives nice
    understtanding even.
    site

  2. Does your site have a contact page? I’m having trouble locating it but,
    I’d like to shoot you an e-mail. I’ve got some
    suggestions for your blog you might be interested in hearing.
    Either way, great site and I look forward to seeing it
    expand over time.

  3. Superb blog! Do yoou have any suggestions for aspiring writers?
    I’m hoping to start myy owwn blog soon but I’m a little lost on everything.

    Would you propose starting with a free platform like WordPress oor go for a
    paid option? There arre so many options out there that
    I’m totally overwhelmed ..Any suggestions? Thanks a lot!

    website

  4. Yes! Finally something about 0mniartist. asmr 0mniartist

  5. Wow, this post is nice, my younger sister is analyzing these things,
    thus I am going to inform her. asmr 0mniartist

  6. My relatives all the time say that I am wasting my time here
    at web, however I know I am getting experience all the time by reading
    thes fastidious content. asmr 0mniartist

  7. Hello there, I believe your site could be having web browser
    compatibility issues. When I look at your blog in Safari, it looks fine however, when opening in Internet Explorer, it’s got some
    overlapping issues. I just wanted to provide you with a quick heads up!
    Apart from that, excellent website! asmr 0mniartist

  8. Have you ever considered writing an ebook or guest authoring on other blogs?
    I have a blog based on the same information you discuss
    and would love to have you share some stories/information. I
    know my visitors would enjoy your work. If you are
    even remotely interested, feel free to shoot me an email.
    0mniartist asmr

  9. What i don’t realize is in fact how you’re not really much more well-appreciated than you might be right
    now. You’re very intelligent. You realize therefore
    significantly with regards to this topic, made me individually
    believe it from so many varied angles. Its like men and women aren’t fascinated until it’s one thing to do with Lady gaga!
    Your personal stuffs outstanding. At all times deal with it up!

  10. Just desire to say your article is as surprising. The clarity in your post
    is simply great and i can assume you are an expert on this
    subject. Well with your permission allow me
    to grab your RSS feed to keep up to date with forthcoming post.
    Thanks a million and please carry on the enjoyable work.

  11. I’m amazed, I have to admit. Rarely do I encounter a blog
    that’s equally educative and entertaining,
    and let me tell you, you have hit the nail on the head.
    The problem is something which too few people are speaking intelligently about.

    I’m very happy I came across this during my
    search for something regarding this.

  12. Thank you for the auspicious writeup. It in fact was a
    amusement account it. Look advanced to far added agreeable from you!

    By the way, how can we communicate?

  13. Hey there terrific blog! Does running a blog similar to this require
    a lot of work? I have no understanding of programming but I
    was hoping to start my own blog soon. Anyway,
    should you have any ideas or tips for new blog owners please share.
    I know this is off subject but I simply had to ask. Cheers!

  14. Hi there! I just wish to offer you a huge thumbs up
    for your great info you’ve got here on this post. I’ll be returning to your
    website for more soon.

  15. I read this paragraph completely regarding the difference of most recent and preceding technologies, it’s
    amazing article.

  16. Nice answers in return of this issue with solid arguments and describing
    all on the topic of that.

  17. For hottest information you have to pay a visit internet and on web I found this site as a finest web page for hottest
    updates.

  18. Fantastic blog you have here but I was curious about if
    you knew of any community forums that cover the same topics talked about in this article?
    I’d really love to be a part of online community where I
    can get suggestions from other experienced individuals that share the same interest.

    If you have any recommendations, please let me know.
    Bless you!

  19. I am regular reader, how are you everybody? This paragraph
    posted at this site is really fastidious.

  20. Superb, what a weblog it is! This webpage provides useful information to
    us, keep it up.

  21. I simply could not leave your website before suggesting that I actually loved
    the usual information an individual provide in your guests?
    Is going to be again frequently in order to
    check out new posts

  22. you are truly a good webmaster. The web site loading pace is incredible.
    It kind of feels that you are doing any unique trick.

    Moreover, The contents are masterwork. you’ve done a wonderful process in this topic!

  23. I have been browsing online more than 2 hours today, yet I never found any interesting
    article like yours. It is pretty worth enough for me. Personally,
    if all webmasters and bloggers made good content as you
    did, the web will be much more useful than ever before.

  24. It’s genuinely very difficult in this full of activity life to listen news on TV, therefore I only use
    web for that reason, and obtain the newest information.

  25. Great post. I was checking continuously this blog and I am impressed!

    Extremely helpful information specially the last part 🙂 I
    care for such information a lot. I was looking for
    this certain info for a very long time. Thank you and good
    luck.

  26. Its like you read my thoughts! You appear to know so much approximately this, such
    as you wrote the book in it or something.
    I believe that you simply could do with some percent to force the message house a
    little bit, however other than that, that is fantastic
    blog. An excellent read. I’ll definitely be
    back.

  27. This is a topic that is near to my heart…
    Many thanks! Exactly where are your contact details though?

  28. Do you have any video of that? I’d like to find out more details.

  29. I have been browsing online more than 2
    hours today, yet I never found any interesting article like yours.
    It is pretty worth enough for me. In my opinion, if all website owners and bloggers made good
    content as you did, the net will be much more useful than ever before.

  30. Hi, I do believe your blog could be having browser compatibility problems.
    When I take a look at your web site in Safari, it looks fine but when opening in Internet Explorer, it
    has some overlapping issues. I merely wanted to provide you
    with a quick heads up! Other than that, great blog!

  31. Thanks for the good writeup. It actually was once a enjoyment account it.
    Look complicated to more added agreeable from you!

    However, how can we keep up a correspondence?

  32. I loved as much as you will receive carried out right here.

    The sketch is attractive, your authored material stylish.
    nonetheless, you command get bought an impatience over
    that you wish be delivering the following.
    unwell unquestionably come more formerly again since exactly the same nearly a lot often inside case you shield this increase.

  33. Fantastic site. A lot of helpful information here. I’m sending it to a few friends ans additionally sharing in delicious.
    And certainly, thanks on your sweat!

  34. Howdy, i read your blog from time to time and i own a similar one and i was just curious if you
    get a lot of spam responses? If so how do you reduce it, any plugin or anything
    you can recommend? I get so much lately it’s driving
    me insane so any assistance is very much appreciated.

  35. I just could not depart your site before suggesting that I extremely loved the usual
    information a person supply on your visitors? Is going to be
    again often in order to check out new posts

  36. It is truly a nice and helpful piece of information. I am
    happy that you simply shared this helpful information with us.
    Please keep us up to date like this. Thanks for sharing.

  37. Hiya! Quick question that’s entirely off topic. Do you know how to
    make your site mobile friendly? My website looks weird when browsing from my iphone.

    I’m trying to find a template or plugin that
    might be able to resolve this issue. If you have any
    suggestions, please share. Thank you!

  38. Thanks in favor of sharing such a nice thinking, piece of
    writing is pleasant, thats why i have read it completely

  39. Amazing things here. I’m very happy to peer your article.
    Thanks a lot and I am having a look forward to contact you.
    Will you kindly drop me a mail?

  40. I do consider all of the ideas you have presented in your post.
    They are really convincing and can certainly work. Still,
    the posts are too quick for newbies. May just you please extend
    them a little from subsequent time? Thank you for the post.

  41. Fastidious respond in return of this issue with real
    arguments and describing the whole thing concerning that.

  42. I’m curious to find out what blog system you happen to be utilizing?
    I’m experiencing some minor security problems with
    my latest site and I’d like to find something more risk-free.

    Do you have any recommendations?

  43. It’s not my first time to visit this website, i am visiting this website dailly and get nice facts from here everyday.

  44. It’s really a nice and useful piece of information. I’m
    happy that you just shared this useful info with us. Please keep
    us up to date like this. Thank you for sharing.

  45. Wow! In the end I got a webpage from where I can actually get
    helpful data regarding my study and knowledge.

  46. Good day! This post could not be written any better!
    Reading this post reminds me of my good old room mate! He always kept chatting about this.
    I will forward this post to him. Pretty sure he will have a good read.

    Many thanks for sharing!

  47. Hello, I enjoy reading all of your post. I like to write a little comment
    to support you.

  48. I do not even know how I ended up here, but I thought
    this post was good. I don’t know who you are but certainly you’re going to a famous blogger if you aren’t already
    😉 Cheers!

  49. Link exchange is nothing else except it is simply placing the other person’s webpage link on your page at appropriate place and other person will also do same
    for you.

  50. Somebody essentially assist to make significantly articles I’d state.
    This is the very first time I frequented your website page and up
    to now? I surprised with the research you made to make this particular submit extraordinary.

    Excellent task!

  51. This is really attention-grabbing, You are an excessively professional blogger.
    I’ve joined your rss feed and stay up for in search of more of your wonderful post.

    Also, I’ve shared your site in my social networks

  52. I’ve been browsing on-line more than 3 hours
    as of late, but I by no means found any fascinating
    article like yours. It is beautiful worth sufficient for me.

    In my view, if all web owners and bloggers made just right content as you did, the web will
    be much more useful than ever before.

  53. Hi there! I know this is kinda off topic however , I’d figured I’d ask.
    Would you be interested in trading links or maybe
    guest authoring a blog post or vice-versa?
    My site covers a lot of the same subjects as yours and
    I think we could greatly benefit from each other. If you’re interested feel free to send me an e-mail.
    I look forward to hearing from you! Awesome blog by the way!

  54. Pretty portion of content. I simply stumbled upon your blog and in accession capital to claim that I acquire in fact enjoyed
    account your weblog posts. Any way I will be subscribing
    for your augment and even I achievement you get entry to
    consistently fast.

  55. I am regular reader, how are you everybody? This paragraph
    posted at this web page is genuinely good.

  56. Remarkable issues here. I am very glad to see your article.
    Thank you a lot and I’m taking a look ahead to touch you.
    Will you kindly drop me a mail?

  57. If some one wants expert view on the topic of blogging and site-building afterward i advise him/her to go to see
    this weblog, Keep up the good work.

  58. This is very interesting, You’re a very skilled blogger. I have joined your feed and look forward to seeking
    more of your fantastic post. Also, I’ve shared your site in my social networks!

  59. fantastic post, very informative. I wonder why the opposite specialists of this
    sector don’t understand this. You must proceed your writing.
    I am confident, you have a huge readers’ base already!

  60. all the time i used to read smaller articles or reviews
    that as well clear their motive, and that is also happening with this piece of writing which I am reading here.

  61. Hi there, just became alert to your blog through
    Google, and found that it is truly informative.
    I am going to watch out for brussels. I will be grateful if you continue this in future.

    Numerous people will be benefited from your writing.

    Cheers!

  62. Why users still use to read news papers when in this technological globe
    all is presented on net?

  63. Thank you for any other fantastic article. The place else may just anybody get that kind of information in such an ideal means of writing?

    I have a presentation next week, and I am on the look for such info.

  64. Have you ever considered writing an ebook or guest authoring on other websites?
    I have a blog based on the same topics you discuss and would love to have you share some stories/information. I know my
    readers would appreciate your work. If you are even remotely interested, feel free to shoot me
    an e mail.

  65. Hey, I think your blog might be having browser compatibility issues.
    When I look at your blog in Safari, it looks fine but when opening in Internet Explorer,
    it has some overlapping. I just wanted to give you a quick heads up!
    Other then that, wonderful blog!

  66. There is definately a great deal to find out about this issue.
    I love all the points you have made.

  67. Hello, after reading this awesome piece of writing i am as well glad to
    share my experience here with mates.

  68. It’s going to be finish of mine day, but before end I am reading this impressive article
    to improve my knowledge.

  69. This is my first time pay a quick visit at here and i am in fact pleassant to read everthing at one place.

  70. Just want to say your article is as amazing. The clarity in your post is simply spectacular and i can assume you are an expert on this subject.
    Well with your permission allow me to grab your RSS feed
    to keep up to date with forthcoming post. Thanks a million and please continue the enjoyable work.

  71. I am really impressed with your writing skills and also with
    the layout on your weblog. Is this a paid theme or did you customize it yourself?
    Either way keep up the excellent quality writing, it’s rare to see a nice blog like this one today.

  72. I couldn’t resist commenting. Perfectly written!

  73. Pretty! This was an extremely wonderful post. Thank you for supplying these details.

  74. Hello there! Do you use Twitter? I’d like to follow you if that
    would be ok. I’m undoubtedly enjoying your blog
    and look forward to new posts.

  75. That is really interesting, You are an excessively skilled blogger.
    I’ve joined your rss feed and look forward to in quest of more of your fantastic post.
    Also, I have shared your site in my social networks

  76. Hmm is anyone else encountering problems with the images on this blog loading?
    I’m trying to find out if its a problem on my
    end or if it’s the blog. Any responses would be greatly appreciated.

  77. What’s up friends, good article and pleasant urging commented here,
    I am really enjoying by these.

  78. Hi there! This post could not be written any better!
    Reading this post reminds me of my previous room mate!
    He always kept chatting about this. I will forward
    this article to him. Pretty sure he will have a good read.
    Thanks for sharing!

  79. I used to be able to find good information from your blog articles.

  80. Hi there, You have done a fantastic job. I will definitely digg it and personally suggest to my friends.
    I’m sure they will be benefited from this site.

  81. Hi there every one, here every one is sharing such knowledge, therefore it’s nice to read this website,
    and I used to pay a quick visit this website all the time.

  82. I was able to find good info from your blog posts.

  83. Thanks for another informative web site. Where else
    may just I get that type of information written in such an ideal means?
    I’ve a project that I am just now operating on, and I have been on the look
    out for such information.

  84. My brother recommended I might like this web site.
    He was entirely right. This post actually made my day.
    You cann’t imagine just how much time I had spent for this information! Thanks!

  85. I just couldn’t go away your website prior to suggesting that I really loved the
    usual info an individual supply to your visitors? Is
    going to be again incessantly to check out new posts

  86. Fantastic beat ! I wish to apprentice at the same time as you amend
    your site, how could i subscribe for a weblog web site?

    The account helped me a applicable deal. I had been a
    little bit familiar of this your broadcast offered vivid clear idea

  87. Ahaa, its nice dialogue about this paragraph at this place at this weblog, I have read all
    that, so at this time me also commenting here.

  88. Hmm is anyone else having problems with the images on this blog loading?
    I’m trying to find out if its a problem on my end or if it’s the blog.
    Any feed-back would be greatly appreciated.

  89. What’s up, its fastidious article on the topic of media
    print, we all know media is a great source of
    facts.

  90. Wow, wonderful weblog structure! How long have you
    been running a blog for? you made blogging look easy.
    The whole glance of your website is fantastic, as
    smartly as the content!

  91. What’s up mates, good article and nice arguments commented here, I am truly enjoying by these.

  92. It is appropriate time to make a few plans for the longer term and it’s time to be happy.
    I’ve read this put up and if I may I wish to recommend you some attention-grabbing things or advice.
    Maybe you could write next articles relating to
    this article. I wish to learn even more things about it!

  93. Hey, I think your site might be having browser compatibility issues.
    When I look at your blog in Ie, it looks fine but when opening
    in Internet Explorer, it has some overlapping. I just wanted to
    give you a quick heads up! Other then that, great blog!

  94. Good post. I learn something totally new and challenging on websites I
    stumbleupon everyday. It’s always helpful to read through
    content from other writers and practice something from other sites.

  95. Generally I don’t learn post on blogs, but I wish to say
    that this write-up very pressured me to try and do so! Your writing taste has been surprised me.
    Thank you, quite great article.

  96. When someone writes an post he/she keeps the idea of a user in his/her mind that
    how a user can understand it. So that’s why this post is great.

    Thanks!

  97. Do you have any video of that? I’d love to find out
    some additional information.

  98. This is my first time visit at here and i am truly happy to
    read all at single place.

  99. When some one searches for his required thing, therefore he/she
    needs to be available that in detail, therefore that thing is maintained over here.

  100. I do not know whether it’s just me or if perhaps everyone else encountering problems with your website.
    It appears like some of the text in your content are running
    off the screen. Can somebody else please comment and let me know if this is happening to them as well?
    This might be a problem with my web browser
    because I’ve had this happen previously. Many thanks

  101. What’s Taking place i’m new to this, I stumbled upon this I’ve discovered It positively useful and it has aided me out
    loads. I’m hoping to contribute & aid other users like
    its aided me. Good job.

  102. Currently it appears like Drupal is the best blogging platform out there right now.
    (from what I’ve read) Is that what you’re using on your blog?

  103. Hi there to every single one, it’s genuinely a good for me to go to see this web site, it consists
    of useful Information.

  104. Hi my family member! I want to say that this article is awesome, great
    written and include approximately all vital
    infos. I’d like to see more posts like this .

  105. This design is wicked! You most certainly know how to keep a reader
    entertained. Between your wit and your videos, I was almost
    moved to start my own blog (well, almost…HaHa!) Fantastic job.
    I really loved what you had to say, and more than that, how you
    presented it. Too cool!

  106. Hi there, I check your blogs daily. Your writing style is witty, keep doing what
    you’re doing!

  107. Great web site you’ve got here.. It’s difficult to find quality writing like
    yours these days. I seriously appreciate individuals like you!
    Take care!!

  108. My family always say that I am wasting my time here at web,
    but I know I am getting know-how daily by reading such pleasant content.

  109. Very soon this web page will be famous amid all blogging users,
    due to it’s good articles

  110. I am curious to find out what blog system you’re using?
    I’m experiencing some small security issues with my latest blog and I would like to find something more
    safe. Do you have any recommendations?

  111. Piece of writing writing is also a fun, if you
    be familiar with afterward you can write if not it is complicated to write.

  112. I don’t even know how I ended up here, but I thought this post was good.

    I do not know who you are but definitely you are going to
    a famous blogger if you are not already 😉 Cheers!

  113. Good info. Lucky me I recently found your blog by accident (stumbleupon).
    I have book-marked it for later!

  114. I loved as much as you will receive carried out right
    here. The sketch is tasteful, your authored subject matter stylish.
    nonetheless, you command get got an nervousness over that you wish be delivering the following.
    unwell unquestionably come more formerly again as exactly the same nearly a lot often inside case you shield this increase.

  115. Hey just wanted to give you a brief heads up and let you know a few
    of the pictures aren’t loading properly. I’m not sure why but I think its a linking issue.
    I’ve tried it in two different internet browsers and both show the same results.

  116. Great blog here! Also your web site loads up fast!
    What web host are you using? Can I get your affiliate link to your host?

    I wish my site loaded up as quickly as yours lol

  117. Write more, thats all I have to say. Literally, it seems
    as though you relied on the video to make your point.
    You clearly know what youre talking about, why throw away
    your intelligence on just posting videos to your site when you could be giving us something enlightening to
    read?

  118. Wonderful beat ! I wish to apprentice even as you amend
    your web site, how could i subscribe for a blog site?

    The account helped me a appropriate deal. I had been tiny bit familiar of this your broadcast provided vivid clear idea

  119. Have you ever thought about adding a little bit more than just your articles?
    I mean, what you say is valuable and all. However think about if you added some great visuals or videos to
    give your posts more, “pop”! Your content is excellent but with pics and videos, this site could certainly be one of the best
    in its field. Wonderful blog!

  120. If you are going for most excellent contents like me, simply visit
    this web site all the time for the reason that it provides
    feature contents, thanks

  121. Everyone loves what you guys tend to be up too. This type of clever work and exposure!

    Keep up the superb works guys I’ve incorporated you
    guys to my own blogroll.

  122. I’ll immediately snatch your rss as I can’t to find your e-mail subscription link or e-newsletter service.

    Do you’ve any? Please let me understand so that I may subscribe.
    Thanks.

  123. Do you have a spam issue on this website; I also am a blogger,
    and I was wanting to know your situation; many of us have developed some nice methods and we are looking to
    trade techniques with other folks, please shoot me an e-mail if interested.

  124. I think the admin of this website is truly working hard in favor of
    his site, for the reason that here every stuff is quality based information.

  125. My brother suggested I might like this web site. He was totally right.
    This post actually made my day. You can not imagine just how much time I had spent for this info!
    Thanks!

  126. Hmm is anyone else experiencing problems with the images on this
    blog loading? I’m trying to determine if its a problem on my end or if
    it’s the blog. Any feed-back would be greatly appreciated.

  127. I am sure this post has touched all the internet people,
    its really really pleasant paragraph on building up new web site.

  128. Pretty! This has been an incredibly wonderful post.

    Many thanks for providing this information.

  129. Thanks to my father who informed me about this blog, this web site is
    in fact remarkable.

  130. Very nice post. I just stumbled upon your weblog and wished to say that I
    have truly enjoyed browsing your blog posts.
    In any case I will be subscribing to your rss feed and
    I hope you write again soon!

  131. Link exchange is nothing else but it is only placing the other
    person’s web site link on your page at suitable place and other person will also do
    same in support of you.

  132. Everyone loves what you guys are usually up too. This type of
    clever work and exposure! Keep up the amazing works guys I’ve incorporated you guys to blogroll.

  133. Spot on with this write-up, I absolutely believe that this site needs much
    more attention. I’ll probably be returning to
    read through more, thanks for the information!

  134. Do you have a spam problem on this blog; I also am a blogger,
    and I was wondering your situation; we have created some nice practices and we are looking to swap solutions
    with others, please shoot me an email if interested.

  135. Useful information. Lucky me I discovered your web site unintentionally, and I’m stunned why this twist of fate didn’t happened earlier!
    I bookmarked it.

  136. I am not sure where you are getting your info, but good
    topic. I needs to spend some time learning more or understanding more.
    Thanks for great info I was looking for this info for
    my mission.

  137. Hello I am so grateful I found your webpage,
    I really found you by accident, while I was browsing on Bing
    for something else, Regardless I am here now and would just like to say many thanks for a remarkable post and a all round
    exciting blog (I also love the theme/design), I don’t have
    time to look over it all at the minute but I have saved it and also included your RSS feeds,
    so when I have time I will be back to read a lot more,
    Please do keep up the excellent job.

  138. Hello to every one, it’s truly a nice for me to pay a visit this website, it
    consists of helpful Information.

  139. This piece of writing is in fact a nice one it helps new web users, who are wishing for blogging.

  140. Wow, wonderful blog structure! How long have you ever been running
    a blog for? you made running a blog glance easy.
    The full look of your web site is wonderful, let alone the content material!

  141. I could not refrain from commenting. Perfectly written!

  142. It’s amazing to visit this website and reading the views of
    all colleagues regarding this piece of writing, while I am also
    eager of getting familiarity.

  143. I blog frequently and I really thank you for your information. The article has
    truly peaked my interest. I am going to book mark your site
    and keep checking for new details about once a week.

    I opted in for your Feed as well.

  144. This is really attention-grabbing, You’re
    a very professional blogger. I’ve joined your rss feed and
    look forward to in quest of more of your great post.
    Also, I have shared your website in my social networks

  145. Hi there! Do you know if they make any plugins to protect against
    hackers? I’m kinda paranoid about losing everything
    I’ve worked hard on. Any suggestions?

  146. With havin so much written content do you ever
    run into any issues of plagorism or copyright violation? My website
    has a lot of unique content I’ve either authored myself or outsourced but it seems
    a lot of it is popping it up all over the internet without my agreement.
    Do you know any ways to help protect against content from being stolen? I’d truly appreciate it.

  147. If some one desires to be updated with latest technologies then he must be
    go to see this web site and be up to date all the time.

  148. Amazing blog! Do you have any recommendations for aspiring writers?
    I’m hoping to start my own site soon but I’m a little lost on everything.
    Would you propose starting with a free platform like WordPress
    or go for a paid option? There are so many options
    out there that I’m totally overwhelmed .. Any ideas? Cheers!

  149. Very soon this web site will be famous amid all blog visitors,
    due to it’s nice posts

  150. Every weekend i used to pay a quick visit this web page, for the reason that i want enjoyment,
    as this this site conations really nice funny material too.

  151. If you desire to obtain much from this piece of writing then you
    have to apply these methods to your won weblog.

  152. Howdy I am so thrilled I found your weblog, I really
    found you by accident, while I was browsing
    on Aol for something else, Anyhow I am here now and would just like to say
    many thanks for a fantastic post and a all round enjoyable blog (I also love the theme/design),
    I don’t have time to browse it all at the moment but I have bookmarked it and also
    added in your RSS feeds, so when I have time I will be back to read more, Please do keep up the excellent jo.

  153. hello!,I love your writing so a lot! percentage we keep up a correspondence
    more about your article on AOL? I need a specialist on this space to resolve my problem.
    May be that’s you! Looking ahead to see you.

  154. Fantastic website. Lots of helpful info here. I am sending
    it to a few friends ans additionally sharing in delicious.
    And certainly, thanks for your effort!

  155. It’s a shame you don’t have a donate button! I’d without a doubt donate to this
    fantastic blog! I guess for now i’ll settle for
    book-marking and adding your RSS feed to my Google
    account. I look forward to fresh updates and will talk about this site with
    my Facebook group. Talk soon!

  156. Thanks a bunch for sharing this with all people you really recognise what you’re speaking about!
    Bookmarked. Please also talk over with my website
    =). We may have a hyperlink change arrangement between us

  157. I love reading through an article that will make people think.
    Also, many thanks for allowing me to comment!

  158. I am regular visitor, how are you everybody? This piece of writing posted at this web page is actually pleasant.

  159. I was suggested this web site via my cousin. I am not certain whether this put up
    is written by him as nobody else recognize such distinctive about my problem.
    You’re wonderful! Thanks!

  160. Marvelous, what a blog it is! This webpage provides useful information to us, keep it up.

  161. Hi, after reading this remarkable post i am also delighted
    to share my know-how here with mates.

  162. Hello, yup this article is genuinely nice and I have learned lot of things from it regarding blogging.

    thanks.

  163. This design is wicked! You certainly know how to keep a reader amused.
    Between your wit and your videos, I was
    almost moved to start my own blog (well, almost…HaHa!) Wonderful job.
    I really loved what you had to say, and more than that, how you presented
    it. Too cool!

  164. Today, I went to the beachfront with my kids. I found a
    sea shell and gave it to my 4 year old daughter and said “You can hear the ocean if you put this to your ear.” She placed the shell to her ear and screamed.
    There was a hermit crab inside and it pinched her ear.
    She never wants to go back! LoL I know this is entirely off
    topic but I had to tell someone!

  165. I’m extremely inspired together with your
    writing skills as well as with the structure on your weblog.

    Is this a paid theme or did you customize it yourself?
    Anyway stay up the nice high quality writing, it’s uncommon to peer a great
    weblog like this one these days..

  166. This is really interesting, You are a very skilled blogger.

    I’ve joined your rss feed and look forward to seeking more of your fantastic post.
    Also, I have shared your website in my social networks!

  167. Highly energetic blog, I loved that bit. Will there be a
    part 2?

  168. Have you ever considered publishing an e-book or guest authoring on other blogs?
    I have a blog based on the same information you discuss and would
    really like to have you share some stories/information. I know my readers would value your work.
    If you’re even remotely interested, feel free to send me an email.

  169. Hi there it’s me, I am also visiting this web page daily, this website
    is really fastidious and the viewers are genuinely sharing pleasant thoughts.

  170. I every time used to read piece of writing in news papers but now as I am a user of net therefore
    from now I am using net for articles, thanks to web.

  171. I don’t know if it’s just me or if perhaps everyone else experiencing problems with your website.
    It appears as if some of the text within your content are running off
    the screen. Can somebody else please comment and let me
    know if this is happening to them too? This may be a problem with
    my internet browser because I’ve had this
    happen before. Cheers

  172. Way cool! Some extremely valid points! I appreciate you writing this article and the rest of the website is very good.

  173. What i don’t understood is in truth how you’re not really a lot more well-favored than you may be
    now. You’re so intelligent. You understand therefore considerably
    with regards to this subject, made me individually
    believe it from so many varied angles. Its like women and men aren’t
    fascinated unless it’s something to accomplish with Lady gaga!
    Your personal stuffs excellent. At all times handle it up!

  174. Amazing! Its actually amazing piece of writing, I have
    got much clear idea regarding from this post.

  175. It’s a shame you don’t have a donate button! I’d most certainly donate to this brilliant blog!
    I guess for now i’ll settle for book-marking and
    adding your RSS feed to my Google account.
    I look forward to fresh updates and will share this site with my Facebook group.
    Chat soon!

  176. I used to be suggested this website by my cousin. I’m now not certain whether
    or not this publish is written by him as no one else recognize
    such exact about my trouble. You are wonderful! Thanks!

  177. We absolutely love your blog and find most of your post’s to
    be exactly what I’m looking for. Does one offer guest writers to write content for yourself?
    I wouldn’t mind writing a post or elaborating on many of the subjects you write related
    to here. Again, awesome web log!

  178. At this moment I am going away to do my breakfast, when having my breakfast
    coming yet again to read further news.

  179. It is found naturally in coffee, green tea and dark chocolate, and added to many processed foods and beverages.

  180. Unquestionably believe that which you stated. Your favorite
    reason appeared to be on the web the easiest thing to be aware of.
    I say to you, I definitely get irked while people think about worries that they
    just do not know about. You managed to hit the nail
    upon the top as well as defined out the whole thing without having side-effects , people could take
    a signal. Will likely be back to get more. Thanks

  181. I’d like to thank you for the efforts you’ve put in writing
    this website. I am hoping to view the same high-grade
    content from you later on as well. In fact, your creative writing abilities has inspired me to get my own site now 😉

  182. Please let me know if you’re looking for a writer for your blog.
    You have some really great articles and I believe I would be a good asset.
    If you ever want to take some of the load off, I’d love to write some content for your blog in exchange for a link back to mine.
    Please send me an e-mail if interested. Cheers!

  183. Hello just wanted to give you a brief heads up and let you know a few of the pictures aren’t loading properly.
    I’m not sure why but I think its a linking
    issue. I’ve tried it in two different internet browsers and both show the
    same results.

  184. When some one searches for his required thing, so he/she desires to be available that in detail,
    therefore that thing is maintained over here.

  185. Way cool! Some very valid points! I appreciate
    you penning this article and the rest of the website
    is really good.

  186. Woah! I’m really digging the template/theme of this
    website. It’s simple, yet effective. A lot of times it’s very hard to
    get that “perfect balance” between user friendliness and
    appearance. I must say that you’ve done a great job with this.

    In addition, the blog loads super quick for me on Opera.
    Outstanding Blog!

  187. My developer is trying to convince me to move to .net from
    PHP. I have always disliked the idea because of the costs.
    But he’s tryiong none the less. I’ve been using
    WordPress on a number of websites for about a year
    and am anxious about switching to another platform.
    I have heard good things about blogengine.net.
    Is there a way I can import all my wordpress
    content into it? Any kind of help would be greatly appreciated!

  188. I am really impressed with your writing skills and also
    with the layout on your weblog. Is this a paid theme or did you
    modify it yourself? Anyway keep up the excellent quality writing, it’s rare to see a great blog like this one these days.

  189. Seeking help is not a sign of weakness, in fact, it
    is a sign of strength.

  190. Every weekend i used to go to see this site, as i wish for enjoyment, as this this website conations truly nice funny stuff too.

  191. When someone writes an article he/she maintains the
    plan of a user in his/her mind that how a user can be aware
    of it. So that’s why this piece of writing is
    perfect. Thanks!

  192. What is Ephedra Discover what Ephedra is, and
    all the benefits that ephedra’s have for you.

  193. For most up-to-date news you have to go to see world wide web and
    on the web I found this site as a finest site for
    most up-to-date updates.

  194. Hmm it seems like your blog ate my first comment (it was super long) so
    I guess I’ll just sum it up what I wrote and say, I’m thoroughly enjoying your blog.
    I as well am an aspiring blog blogger but I’m still new to everything.
    Do you have any tips for novice blog writers? I’d genuinely appreciate it.

  195. Hello, after reading this remarkable piece of writing
    i am too glad to share my familiarity here with colleagues.

  196. It’s very trouble-free to find out any matter on net as compared to textbooks, as
    I found this piece of writing at this website.

  197. It’s a pity you don’t have a donate button! I’d definitely donate to this outstanding blog!

    I guess for now i’ll settle for book-marking and adding your
    RSS feed to my Google account. I look forward to new updates and will share this site with my Facebook group.

    Chat soon!

  198. I really like reading through an article that will make people think.
    Also, thank you for allowing me to comment!

  199. Hello there, I do think your site could possibly be
    having internet browser compatibility issues.
    When I look at your site in Safari, it looks fine however
    when opening in IE, it’s got some overlapping issues. I simply wanted to give
    you a quick heads up! Besides that, excellent blog!

  200. I don’t know whether it’s just me or if perhaps everyone else encountering issues with your website.
    It appears like some of the written text within your
    content are running off the screen. Can somebody else please provide feedback and let me know if
    this is happening to them too? This might be a issue with my internet
    browser because I’ve had this happen before. Thanks

  201. Magnificent beat ! I wish to apprentice while you amend your site, how could i subscribe for a blog web site?
    The account aided me a acceptable deal. I had been tiny bit acquainted of this your broadcast
    provided bright clear idea

  202. Appreciate this post. Will try it out.

  203. Wow that was odd. I just wrote an incredibly long comment but after I clicked submit my
    comment didn’t show up. Grrrr… well I’m not writing all that over
    again. Regardless, just wanted to say wonderful blog!

  204. Hi just wanted to give you a brief heads up and let you know a few
    of the pictures aren’t loading properly. I’m not sure why
    but I think its a linking issue. I’ve tried it in two
    different internet browsers and both show the same outcome.

  205. Good article. I’m experiencing a few of these issues as well..

  206. My spouse and I stumbled over here different web page and thought I
    may as well check things out. I like what I see so now
    i’m following you. Look forward to checking
    out your web page for a second time.

  207. You are so interesting! I don’t believe I have read through anything like that before.
    So good to find someone with original thoughts on this topic.
    Seriously.. many thanks for starting this up. This site is one thing that
    is required on the web, someone with some originality!

  208. Hi to every one, the contents existing at this web page are truly
    remarkable for people knowledge, well, keep up the nice work fellows.

  209. Hey very cool site!! Man .. Beautiful .. Wonderful ..
    I’ll bookmark your web site and take the feeds also?
    I’m satisfied to find a lot of useful information here in the
    post, we’d like develop more techniques on this regard,
    thank you for sharing. . . . . .

  210. Thank you for any other informative site. The place else may I
    am getting that kind of information written in such a perfect approach?
    I’ve a project that I am just now running on, and I have been on the look out for such information.

  211. Ahaa, its nice dialogue about this post here at this web site, I have read all that, so now me also commenting here.

  212. I’m amazed, I have to admit. Rarely do I come across a blog that’s both
    equally educative and interesting, and let me tell you, you’ve hit
    the nail on the head. The problem is something that too few
    men and women are speaking intelligently about.
    I am very happy that I found this during my
    search for something relating to this.

  213. Its not my first time to pay a visit this site, i am browsing
    this web site dailly and get pleasant facts from here all the time.

  214. Hi, I believe your website may be having web browser compatibility issues.
    When I look at your site in Safari, it looks fine but when opening in IE, it’s
    got some overlapping issues. I merely wanted to provide you with a quick heads up!
    Other than that, fantastic site!

  215. If you wish for to increase your experience simply keep visiting this web site and be updated
    with the newest gossip posted here.

  216. These are in fact enormous ideas in concerning blogging. You have touched some pleasant things
    here. Any way keep up wrinting.

  217. Great information. Lucky me I ran across your website by chance (stumbleupon).
    I have bookmarked it for later!

  218. Hey! This is my first visit to your blog! We are a team of volunteers and starting a new initiative
    in a community in the same niche. Your blog provided us
    useful information to work on. You have done a marvellous job!

  219. I was wondering if you ever considered changing the structure of your
    site? Its very well written; I love what youve got to say.
    But maybe you could a little more in the way of content so people could connect
    with it better. Youve got an awful lot of text for only having one or two images.

    Maybe you could space it out better?

  220. I’m no longer sure where you are getting your information, however good
    topic. I must spend a while learning much more or understanding more.

    Thanks for magnificent information I was searching for this information for my mission.

  221. Very nice article, totally what I wanted to find.

  222. I’m truly enjoying the design and layout of your blog.
    It’s a very easy on the eyes which makes it much more pleasant for me to come here and visit more often. Did you hire out a developer to create your theme?

    Excellent work!

  223. We are a group of volunteers and opening a new scheme in our community.
    Your website offered us with valuable info to work on. You’ve done a formidable job and our entire community will
    be grateful to you.

  224. Oh my goodness! Incredible article dude! Thanks,
    However I am going through problems with your RSS. I don’t understand why I am unable to join it.
    Is there anybody else having identical RSS problems?

    Anybody who knows the solution will you kindly respond?
    Thanks!!

  225. Hi to all, since I am in fact keen of reading this website’s post to
    be updated regularly. It carries fastidious stuff.

  226. I know this web page provides quality based posts and other material,
    is there any other web site which provides such stuff
    in quality?

  227. Just wish to say your article is as amazing. The clearness to your post is just great
    and that i can think you’re an expert on this subject.

    Well with your permission allow me to grab your feed to keep updated with forthcoming post.

    Thanks a million and please carry on the enjoyable work.

  228. Thanks for finally writing about > MySQL5.7三种单实例部署方式 – 邹坤个人博客 < Liked it!

  229. I really like what you guys are usually up too.
    This sort of clever work and exposure! Keep up the very good works guys I’ve added
    you guys to our blogroll.

  230. It’s in point of fact a great and helpful piece of info.
    I’m satisfied that you shared this helpful
    information with us. Please keep us up to date like this.
    Thanks for sharing.

  231. I’ve been surfing online greater than three hours today,
    yet I by no means found any interesting article like yours.
    It is lovely value enough for me. Personally, if all site owners and bloggers made excellent content as you probably did, the internet shall be a lot more useful than ever before.

  232. Hi, for all time i used to check website posts here early in the break of day,
    as i like to find out more and more.

  233. I am in fact thankful to the owner of this website who has shared this fantastic piece
    of writing at at this time.

  234. Hey there just wanted to give you a quick heads up and let you
    know a few of the images aren’t loading correctly. I’m not sure why but I think its a linking
    issue. I’ve tried it in two different web browsers and both
    show the same results.

  235. Tremendous issues here. I am very happy to peer your
    post. Thank you so much and I am having a look forward to
    contact you. Will you kindly drop me a mail?

  236. Why users still use to read news papers when in this technological world everything is available on web?

  237. Good day I am so thrilled I found your blog page, I really found you by accident,
    while I was browsing on Yahoo for something else, Anyways I am here now and would just like to say many thanks for a fantastic post and a all round thrilling blog (I also love the theme/design),
    I don’t have time to browse it all at the minute but I have
    bookmarked it and also included your RSS feeds, so when I
    have time I will be back to read more, Please do keep up the awesome b.

  238. Hey there just wanted to give you a quick heads up.
    The words in your article seem to be running off the
    screen in Chrome. I’m not sure if this is a formatting issue or something to do with web browser compatibility but I figured I’d post
    to let you know. The design look great though!
    Hope you get the issue solved soon. Thanks

  239. Awesome issues here. I’m very satisfied to peer your article.
    Thanks a lot and I am taking a look ahead to touch you.
    Will you kindly drop me a e-mail?

  240. Hello there, just became aware of your blog through Google, and found that it is really informative.
    I am gonna watch out for brussels. I’ll appreciate if you continue this in future.

    A lot of people will be benefited from your writing.
    Cheers!

  241. Can I simply just say what a comfort to discover a person that genuinely understands
    what they are discussing on the web. You certainly know how to
    bring a problem to light and make it important. A lot more
    people should read this and understand this side of the story.
    I can’t believe you are not more popular because you definitely possess the gift.

  242. Seeking help is not a sign of weakness, in fact, it is a sign of strength.

  243. Hi great blog! Does running a blog such as this require a great deal of work?
    I’ve virtually no understanding of computer programming but I had
    been hoping to start my own blog in the near future.
    Anyhow, should you have any suggestions or tips for
    new blog owners please share. I know this is off topic but I simply needed to ask.
    Kudos!

  244. Truly when someone doesn’t understand then its up to other viewers that they will assist, so
    here it occurs.

  245. You really make it seem so easy with your presentation but I find this
    matter to be really something that I think I would never understand.

    It seems too complex and very broad for me. I am looking forward for your next post, I’ll try to get the hang
    of it!

  246. Wow that was odd. I just wrote an extremely long comment but after I clicked submit my comment didn’t show up.

    Grrrr… well I’m not writing all that over again. Regardless, just wanted
    to say excellent blog!

  247. Informative article, just what I needed.

  248. Hi colleagues, its impressive article regarding teachingand fully
    defined, keep it up all the time.

  249. Good post. I learn something new and challenging on sites I stumbleupon on a daily
    basis. It will always be helpful to read through content from other authors and practice a little
    something from other websites.

  250. Heya outstanding blog! Does running a blog like this take
    a massive amount work? I have very little understanding of computer programming however I had been hoping to start my own blog soon. Anyways, should you have any ideas or tips for new blog owners please share.
    I know this is off topic however I simply needed to ask.
    Thanks a lot!

  251. Hi there! This is my 1st comment here so I just
    wanted to give a quick shout out and say I really enjoy reading your posts.
    Can you suggest any other blogs/websites/forums that go over the same topics?
    Thanks for your time!

  252. This article is really a good one it assists new
    internet people, who are wishing in favor of blogging.

  253. I could not resist commenting. Well written!

  254. Thanks for a marvelous posting! I actually enjoyed reading it, you might be a
    great author.I will make sure to bookmark your blog and
    may come back at some point. I want to encourage
    continue your great job, have a nice day!

  255. Thanks for sharing such a nice idea, paragraph is fastidious,
    thats why i have read it fully

  256. I do not know whether it’s just me or if perhaps everyone else experiencing
    issues with your website. It seems like some of the text within your posts are running
    off the screen. Can somebody else please provide feedback and let me know if this is happening to them as well?
    This could be a issue with my internet browser because I’ve had this happen before.
    Thank you

  257. Every weekend i used to visit this site, for the reason that i want
    enjoyment, for the reason that this this web site conations in fact
    fastidious funny information too.

  258. Wonderful beat ! I would like to apprentice even as you amend your web site, how could i subscribe for a weblog site?
    The account helped me a acceptable deal. I had been tiny bit familiar of this your broadcast provided vivid clear concept

  259. No matter if some one searches for his required thing, so he/she needs to be available that
    in detail, thus that thing is maintained over here.

  260. Everyone loves what you guys tend to be up too. This kind of clever work and exposure!
    Keep up the very good works guys I’ve added you guys to my own blogroll.

  261. If you are going for best contents like myself, only pay a quick visit this site every day
    as it gives quality contents, thanks

  262. You really make it seem so easy with your presentation but
    I find this topic to be really something which I
    think I would never understand. It seems too complex and very broad for me.
    I am looking forward for your next post, I’ll try to get the hang of it!

  263. Incredible points. Sound arguments. Keep up the great work.

  264. Some diet pills are in fact approved for weight loss and are used to treat people who are morbidly obese or have co-occurring disorders (e.g.

    severe binge eating disorders).

  265. Hi there to every body, it’s my first pay a visit of
    this webpage; this web site carries remarkable
    and genuinely good stuff in support of readers.

  266. Good day I am so grateful I found your weblog, I really
    found you by accident, while I was researching on Bing for something
    else, Anyways I am here now and would just like to say thanks for a fantastic post and
    a all round exciting blog (I also love the theme/design),
    I don’t have time to browse it all at the moment but I have bookmarked it and also added your RSS feeds, so
    when I have time I will be back to read
    a lot more, Please do keep up the superb jo.

  267. Hi, I think your blog might be having browser compatibility issues.
    When I look at your blog in Ie, it looks fine but when opening in Internet Explorer, it has some overlapping.
    I just wanted to give you a quick heads up! Other then that, terrific blog!

  268. I am not sure where you are getting your information, but good topic.
    I needs to spend some time learning much more or understanding more.

    Thanks for excellent info I was looking for this information for my mission.

  269. It’s an amazing paragraph for all the internet visitors; they will obtain advantage from it I
    am sure.

  270. Hi there! I understand this is somewhat off-topic however I had to ask.
    Does managing a well-established blog such as yours take
    a large amount of work? I am completely new to blogging but I do write
    in my diary on a daily basis. I’d like to start a blog so I will be
    able to share my own experience and feelings online. Please let me know if you have any
    kind of suggestions or tips for brand new aspiring blog owners.
    Appreciate it!

  271. What’s Going down i’m new to this, I stumbled upon this I have found It positively helpful and it has helped me out loads.
    I’m hoping to contribute & help other customers like its helped me.

    Great job.

  272. Great blog here! Also your web site loads up fast!
    What web host are you using? Can I get your affiliate link to your host?
    I wish my site loaded up as quickly as yours lol

  273. I blog quite often and I genuinely thank you for your
    information. This article has truly peaked my interest.
    I will bookmark your site and keep checking for new information about once per week.
    I opted in for your RSS feed too.

  274. Thank you for some other informative site. Where else may just I am
    getting that type of info written in such an ideal means?
    I have a venture that I am just now operating on, and
    I’ve been at the glance out for such info.

  275. Hey are using WordPress for your blog platform?

    I’m new to the blog world but I’m trying to get started and create my
    own. Do you need any html coding expertise to make your own blog?
    Any help would be greatly appreciated!

  276. It’s remarkable to pay a quick visit this web page and reading the views of all friends on the topic of this paragraph, while I am also keen of getting familiarity.

  277. My partner and I stumbled over here coming from a different web address and thought I may as well check things out.

    I like what I see so i am just following you. Look forward to exploring your web page repeatedly.

  278. Does your site have a contact page? I’m having problems locating it but, I’d like
    to shoot you an email. I’ve got some suggestions
    for your blog you might be interested in hearing. Either
    way, great website and I look forward to seeing it develop over
    time.

  279. Today, I went to the beach front with my kids. I found
    a sea shell and gave it to my 4 year old daughter and said “You can hear the ocean if you put this to your ear.” She put the shell to her ear and screamed.
    There was a hermit crab inside and it pinched her ear.
    She never wants to go back! LoL I know this is completely off topic but I had to tell someone!

  280. Awesome! Its in fact awesome piece of writing, I have got much clear idea about from this paragraph.

  281. My partner and I stumbled over here from a different web address and thought I might as well check things out.
    I like what I see so now i’m following you.
    Look forward to finding out about your web page repeatedly.

  282. Marvelous, what a webpage it is! This weblog gives helpful information to
    us, keep it up.

  283. Hello, i feel that i noticed you visited my website thus i
    got here to return the choose?.I am attempting to in finding issues to enhance
    my website!I guess its adequate to use a few of your ideas!!

  284. wonderful put up, very informative. I’m wondering why the opposite experts of this
    sector do not notice this. You must continue your writing.
    I’m sure, you’ve a huge readers’ base already!

  285. Wonderful blog! I found it while searching on Yahoo News.
    Do you have any tips on how to get listed in Yahoo
    News? I’ve been trying for a while but I never seem to get there!
    Many thanks

  286. I’ve been exploring for a bit for any high quality articles or blog
    posts on this sort of house . Exploring in Yahoo I eventually stumbled upon this website.

    Reading this information So i am glad to exhibit that I’ve a very just right uncanny
    feeling I came upon exactly what I needed. I most without a doubt will make certain to do not overlook
    this site and give it a glance regularly.

  287. I really like it when individuals come together
    and share views. Great site, continue the good work!

  288. There is certainly a great deal to learn about this
    issue. I like all the points you’ve made.

  289. It’s difficult to find well-informed people in this particular topic, but you seem like you know
    what you’re talking about! Thanks

  290. Hi there, the whole thing is going nicely here and ofcourse every one is sharing
    data, that’s genuinely excellent, keep up writing.

  291. Excellent post. I was checking continuously this blog and I’m impressed!
    Very useful information specifically the last part 🙂 I care for such information a lot.
    I was seeking this particular information for a long time.

    Thank you and good luck.

  292. magnificent issues altogether, you just received a new reader.
    What would you recommend about your put up that you simply made some
    days in the past? Any sure?

  293. Sweet blog! I found it while searching on Yahoo News.
    Do you have any suggestions on how to get listed in Yahoo News?
    I’ve been trying for a while but I never seem to get there!

    Many thanks

  294. I love this guy, super humble, and his Journey on YouTube

  295. I constantly spent my half an hour to read this web site’s articles or reviews daily along with a cup of
    coffee.

  296. This information is priceless. When can I find out more?

  297. Hi there friends, how is everything, and what you would like to say about this piece of writing, in my
    view its genuinely remarkable in support of me.

  298. Wow, amazing blog layout! How long have you been blogging for?
    you make running a blog look easy. The total look of your web site
    is excellent, as smartly as the content material!

  299. We stumbled over here by a different page and
    thought I might check things out. I like what I see so now i
    am following you. Look forward to finding out about your web page yet again.

  300. Every weekend i used to go to see this site, for the reason that i want enjoyment, as this this
    web page conations in fact fastidious funny material too.

  301. Magnificent beat ! I would like to apprentice at the same time as you amend your
    website, how can i subscribe for a weblog web site?
    The account helped me a acceptable deal. I had been a little bit acquainted of this your broadcast provided vivid transparent concept

  302. If you wish for to take a great deal from this piece
    of writing then you have to apply these techniques to your
    won weblog.

  303. I could not refrain from commenting. Perfectly written!

  304. Hello! I’m at work surfing around your blog from my new apple iphone!
    Just wanted to say I love reading through your blog
    and look forward to all your posts! Keep up the excellent work!

  305. Attractive portion of content. I just stumbled upon your blog and in accession capital to say that I get in fact lovedaccount your weblog posts. Anyway I’ll be subscribing on your feeds or even I fulfillment you get admission to constantly quickly.

  306. Hey! This is my first visit to your blog!
    We are a team of volunteers and starting a new project in a community in the same niche.
    Your blog provided us valuable information to work on.
    You have done a wonderful job!

  307. Excellent article. I will be facing some of these issues as well..

  308. Your efforts in writing of this article must be appreciated! Thank you for the information.

  309. Wonderful blog! Do you have any tips and hints for aspiring writers?

    I’m hoping to start my own blog soon but I’m
    a little lost on everything. Would you advise starting with a free platform like WordPress
    or go for a paid option? There are so many choices out there that I’m completely overwhelmed ..
    Any tips? Cheers!

  310. Hello it’s me, I am also visiting this website regularly, this web page
    is truly good and the users are really sharing good thoughts.

评论已关闭。