近期买了个域名,想要玩玩自己建站点:接下来遇到的问题都会一次记录下来。以备自己以后复习查看:
首先建站方案选择: wordPress +centos6.5 +mysql;

server买的:搬瓦工最低配置,事实上主要用来使用vpn。(
你懂的,感兴趣的能够翻看我曾经的博客)。

 地址:https://bandwagonhost.com 

wordpress 下载地址:https://cn.wordpress.org

域名是百度开放云买的。推荐,非常优惠啊!


第一个问题:centos6.5下安装mysql: 參考链接:http://www.centoscn.com/mysql/2014/0812/3481.html



1.使用yum命令安装mysql
[html] view plaincopy
  1. [root@bogon ~]#  yum -y install mysql-server
2.设置开机启动
[html] view plaincopy
  1. [root@bogon ~]#  chkconfig mysqld on
3.启动MySQL服务
[html] view plaincopy
  1. [root@bogon ~]#  service mysqld start
4.设置MySQL的root用户设置密码
[html] view plaincopy
  1. [root@bogon ~]#  mysql -u root
  2. mysql> select user,host,password from mysql.user;
  3. +------+-----------+----------+
  4. | user | host      | password |
  5. +------+-----------+----------+
  6. | root | localhost |          |
  7. | root | bogon     |          |
  8. | root | 127.0.0.1 |          |
  9. |      | localhost |          |
  10. |      | bogon     |          |
  11. +------+-----------+----------+
  12. 5 rows in set (0.01 sec)
查询用户的密码,都为空。用以下的命令设置root的密码为root
[html] view plaincopy
  1. mysql> set password for root@localhost=password('root');
  2. mysql> exit
5.用新密码登陆
[html] view plaincopy
  1. [root@bogon ~]#  mysql -u root -p
  2. Enter password:
6.创建mysql新用户test_user
[html] view plaincopy
  1. mysql> create user 'test_user'@'%' identified by 'test_user';
  2. Query OK, 0 rows affected (0.00 sec)
7.给新用户test_user授权,让他能够从外部登陆和本地登陆
注意:@左边是username,右边是域名、IP和%。表示能够訪问mysql的域名和IP,%表示外部不论什么地址都能訪问。
[html] view plaincopy
  1. mysql> grant all privileges on *.* to 'test_user'@'localhost' identified by 'test_user';
  2. Query OK, 0 rows affected (0.00 sec)
  3. mysql> grant all privileges on *.* to 'test_user'@'%' identified by 'test_user';
  4. Query OK, 0 rows affected (0.00 sec)
  5. mysql> select user,host,password from mysql.user;
  6. +----------+-----------+-------------------------------------------+
  7. | user     | host      | password                                  |
  8. +----------+-----------+-------------------------------------------+
  9. | root     | localhost | *81F5E21E35407D884A6CD4A731AEBFB6AF209E1B |
  10. | root     | bogon     |                                           |
  11. | root     | 127.0.0.1 |                                           |
  12. |          | localhost |                                           |
  13. |          | bogon     |                                           |
  14. | test_user | %         | *3046CF87132BBD4FDDF06F321C6859074843B7D3 |
  15. | test_user | localhost | *3046CF87132BBD4FDDF06F321C6859074843B7D3 |
  16. +----------+-----------+-------------------------------------------+
  17. 7 rows in set (0.00 sec)
  18. mysql> flush privileges;
  19. Query OK, 0 rows affected (0.01 sec)
8.查看mysql5.1的默认存储引擎
从以下的运行结果能够看出,mysql的默认引擎是MyISAM。这个引擎是不支持事务的。
[html] view plaincopy
  1. mysql> show engines;
  2. +------------+---------+------------------------------------------------------------+--------------+------+------------+
  3. | Engine     | Support | Comment                                                    | Transactions | XA   | Savepoints |
  4. +------------+---------+------------------------------------------------------------+--------------+------+------------+
  5. | MRG_MYISAM | YES     | Collection of identical MyISAM tables                      | NO           | NO   | NO         |
  6. | CSV        | YES     | CSV storage engine                                         | NO           | NO   | NO         |
  7. | MyISAM     | DEFAULT | Default engine as of MySQL 3.23 with great performance     | NO           | NO   | NO         |
  8. | InnoDB     | YES     | Supports transactions, row-level locking, and foreign keys | YES          | YES  | YES        |
  9. | MEMORY     | YES     | Hash based, stored in memory, useful for temporary tables  | NO           | NO   | NO         |
  10. +------------+---------+------------------------------------------------------------+--------------+------+------------+
  11. 5 rows in set (0.00 sec)
也能够以以下的方式查看
[html] view plaincopy
  1. mysql> show variables like 'storage_engine';
  2. +----------------+--------+
  3. | Variable_name  | Value  |
  4. +----------------+--------+
  5. | storage_engine | MyISAM |
  6. +----------------+--------+
  7. 1 row in set (0.00 sec)
9.改动mysql的默认引擎为InnoDB
9.1 停止mysql
[html] view plaincopy
  1. mysql> exit;
  2. [root@bogon ~]# service mysqld stop
9.2 改动/etc/my.cnf
[mysqld] 后加入
[html] view plaincopy
  1. default-storage-engine=InnoDB
加入后my.cnf的内容为:
[html] view plaincopy
  1. [root@bogon etc]# more my.cnf
  2. [mysqld]
  3. datadir=/var/lib/mysql
  4. socket=/var/lib/mysql/mysql.sock
  5. user=mysql
  6. # Disabling symbolic-links is recommended to prevent assorted security risks
  7. symbolic-links=0
  8. default-storage-engine=InnoDB
  9. [mysqld_safe]
  10. log-error=/var/log/mysqld.log
  11. pid-file=/var/run/mysqld/mysqld.pid
9.3 启动mysql
[html] view plaincopy
  1. [root@bogon etc]# service mysqld start
  2. Starting mysqld:  [  OK  ]
9.4 查看mysql默认存储引擎
[html] view plaincopy
  1. [root@bogon etc]# mysql -u root -p
  2. Enter password:
  3. Welcome to the MySQL monitor.  Commands end with ; or \g.
  4. Your MySQL connection id is 2
  5. Server version: 5.1.73 Source distribution
  6. Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
  7. Oracle is a registered trademark of Oracle Corporation and/or its
  8. affiliates. Other names may be trademarks of their respective
  9. owners.
  10. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  11. mysql> show variables like 'storage_engine';
  12. +----------------+--------+
  13. | Variable_name  | Value  |
  14. +----------------+--------+
  15. | storage_engine | InnoDB |
  16. +----------------+--------+
  17. 1 row in set (0.00 sec)
10.CentOS6.5开放mysql端口3306
CentOS6.5默认是不开放端口的。假设要让外部的系统訪问CentOS6.5上的mysql,必须开放mysql的端口3306
10.1 改动/etc/sysconfig/iptables
加入以下一行
[html] view plaincopy
  1. -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
改动后iptables中的内容是
[html] view plaincopy
  1. [root@bogon etc]# more /etc/sysconfig/iptables
  2. # Firewall configuration written by system-config-firewall
  3. # Manual customization of this file is not recommended.
  4. *filter
  5. :INPUT ACCEPT [0:0]
  6. :FORWARD ACCEPT [0:0]
  7. :OUTPUT ACCEPT [0:0]
  8. -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
  9. -A INPUT -p icmp -j ACCEPT
  10. -A INPUT -i lo -j ACCEPT
  11. -A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
  12. #加入配置项
  13. -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
  14. -A INPUT -m state --state NEW -m tcp -p tcp --dport 11211 -j ACCEPT
  15. -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
  16. -A INPUT -j REJECT --reject-with icmp-host-prohibited
  17. -A FORWARD -j REJECT --reject-with icmp-host-prohibited
  18. COMMIT
11.重新启动防火墙
[html] view plaincopy
  1. [root@bogon etc]# service iptables restart

建站笔记1:centos6.5下安装mysql的更多相关文章

  1. centos6.5下安装mysql数据库

    centos6.5下安装mysql数据库 1.安装mysql数据库:yum install mysql-server 2.临时启动数据库:service mysqld start 3.开机启动数据库: ...

  2. centos6.4下安装mysql

    一.mysql简介 说到数据库,我们大多想到的是关系型数据库,比如mysql.oracle.sqlserver等等,这些数据库软件在windows上安装都非常的方便,在Linux上如果要安装数据库,咱 ...

  3. centos6.5下安装mysql

    http://www.centoscn.com/mysql/2014/0812/3481.html 1.使用yum命令安装mysql [root@bogon ~]#  yum -y install m ...

  4. CentOS6.8下安装mysql

    转自https://blog.csdn.net/jeffleo/article/details/53559712?utm_source=itdadao&utm_medium=referral ...

  5. CentOS6.7下安装MySQL

    第一步:到MySQL官网上下载linux版本的MySQL rpm 安装包. 第二步: 将该压塑包解压后,有如下文件: 第三步:安装文件,我们需要安装的文件有 MySQL-server-5.6.26-1 ...

  6. linux centos6.8 下安装mysql 步骤

    安装环境:vmware12.centos6.8.centos中配置阿里云数据元 1.下载mysql 运行: sudo yum -y install mysql-server 如果下载失败,可以卸载重新 ...

  7. 【转载】CentOS6.5_X64下安装配置MongoDB数据库

    [转载]CentOS6.5_X64下安装配置MongoDB数据库 2014-05-16 10:07:09|  分类: 默认分类|举报|字号 订阅      下载LOFTER客户端 本文转载自zhm&l ...

  8. centos 6.5下安装mysql+nginx+redmine 3.1.0 笔记

    centos 6.5下安装mysql+nginx+redmine 3.1.0 笔记 目录[-] 过程 1.安装RVM 2.利用rvm安装 Ruby 1.9.3 并设为默认 3.安装rails 4.安装 ...

  9. CentOS6.5下安装apache2.2和PHP 5.5.28

    CentOS6.5下安装apache2.2 1. 准备程序 :httpd-2.2.27.tar.gz 下载地址:http://httpd.apache.org/download.cgi#apache2 ...

随机推荐

  1. 运行时候报异常could only be replicated to 0 nodes instead of minReplication (=1). There are 2 datanode(s) running and no node(s) are excluded in this operation.

    运行时候报异常could only be replicated to 0 nodes instead of minReplication (=1).  There are 2 datanode(s) ...

  2. 洛谷P1129 [ZJOI2007] 矩阵游戏

    题目传送门 分析:看到这题呢,首先想到的就是搜索,数据范围也不大嘛.但是仔细思考发现这题用搜索很难做,看了大佬们的题解后学到了,这一类题目要用二分图匹配来做.可以知道,如果想要的话,每一个子都可以移动 ...

  3. 推荐Maven的两个仓库

    概述 推荐两个maven的仓库,可用于查找依赖,下载jar包. 正文 mvnrepository 这个仓库用来检索依赖.下载jar包:网址:http://mvnrepository.com/ 仓库的主 ...

  4. 使用Nginx的配置对cc攻击进行简单防御

    ddos攻击:分布式拒绝服务攻击,就是利用大量肉鸡或伪造IP,发起大量的服务器请求,最后导致服务器瘫痪的攻击. cc攻击:类似于ddos攻击,不过它的特点是主要是发起大量页面请求,所以流量不大,但是却 ...

  5. application.xml

    application.xml Deployment Descriptor Elements The following sections describe the application.xml f ...

  6. 线程间操作无效: 从不是创建控件“textBox2”的线程访问它

    如何:对 Windows 窗体控件进行线程安全调用 线程间操作无效: 从不是创建控件的线程访问它的三种方法 如果使用多线程处理来提高 Windows 窗体应用程序的性能,则你必须确保以线程安全的方式调 ...

  7. 最长上升子序列:2016 Pacific Northwest Region Programming Contest—Division 2 Problem M

    Description A string of lowercase letters is calledalphabeticalif deleting zero or more of its lette ...

  8. Linux命令-挂载命令:mount

    设置虚拟机放入光盘,并且选中“已连接” mkdir /mnt/cdrom 设置光盘目录 ll /dev/cdrom 查看cdrom的软连接长格式信息 mount -t iso9660 /dev/sr0 ...

  9. nodejs + express访问静态资源

    想访问一个资源的时候,发现访问不了 方法1.加上了这个就可以访问了,static参数为静态文件存放目录:__dirname代表目录 app.use(express.static(__dirname)) ...

  10. Linux 下的图形库介绍

    在进行Linux下的图形系统编程时,我们常常会遇到以下这些概念: Framebuffer, X11, SDL,DFB, miniGUI, OpenGL,QT, GTK,KDE, GNOME等等. 一. ...