mysql5.6 rpm安装配置

  • 检查MySQL及相关RPM包,是否安装,如果有安装,则移除(rpm –e 名称)
 
[root@localhost share]# rpm -qa | grep -i mysql
MySQL-client-5.6.28-1.el6.x86_64
MySQL-devel-5.6.28-1.el6.x86_64
mysql-libs-5.1.71-1.el6.x86_64
[root@localhost share]# yum -y remove mysql-libs*
Loaded plugins: fastestmirror, refresh-packagekit, security
Setting up Remove Process
Resolving Dependencies
--> Running transaction check
---> Package mysql-libs.x86_64 0:5.1.71-1.el6 will be erased
--> Processing Dependency: libmysqlclient.so.16()(64bit) for package: 2:postfix-2.6.6-2.2.el6_1.x86_64
--> Processing Dependency: libmysqlclient.so.16(libmysqlclient_16)(64bit) for package: 2:postfix-2.6.6-2.2.el6_1.x86_64
--> Processing Dependency: mysql-libs for package: 2:postfix-2.6.6-2.2.el6_1.x86_64
--> Running transaction check
---> Package postfix.x86_64 2:2.6.6-2.2.el6_1 will be erased
--> Processing Dependency: /usr/sbin/sendmail for package: cronie-1.4.4-12.el6.x86_64
--> Running transaction check
---> Package cronie.x86_64 0:1.4.4-12.el6 will be erased
--> Processing Dependency: cronie = 1.4.4-12.el6 for package: cronie-anacron-1.4.4-12.el6.x86_64
--> Running transaction check
---> Package cronie-anacron.x86_64 0:1.4.4-12.el6 will be erased
--> Processing Dependency: /etc/cron.d for package: crontabs-1.10-33.el6.noarch
--> Processing Dependency: /etc/cron.d for package: sysstat-9.0.4-22.el6.x86_64
--> Restarting Dependency Resolution with new changes.
--> Running transaction check
---> Package crontabs.noarch 0:1.10-33.el6 will be erased
---> Package sysstat.x86_64 0:9.0.4-22.el6 will be erased
--> Finished Dependency Resolution
Dependencies Resolved
==============================================================================================================================
Package                 Arch            Version                      Repository                                         Size
==============================================================================================================================
Removing:
mysql-libs              x86_64          5.1.71-1.el6                 @anaconda-CentOS-201311272149.x86_64/6.5          4.0 M
Removing for dependencies:
cronie                  x86_64          1.4.4-12.el6                 @anaconda-CentOS-201311272149.x86_64/6.5          174 k
cronie-anacron          x86_64          1.4.4-12.el6                 @anaconda-CentOS-201311272149.x86_64/6.5           43 k
crontabs                noarch          1.10-33.el6                  @anaconda-CentOS-201311272149.x86_64/6.5          2.4 k
postfix                 x86_64          2:2.6.6-2.2.el6_1            @anaconda-CentOS-201311272149.x86_64/6.5          9.7 M
sysstat                 x86_64          9.0.4-22.el6                 @anaconda-CentOS-201311272149.x86_64/6.5          824 k
Transaction Summary
==============================================================================================================================
Remove        6 Package(s)
Installed size: 15 M
Downloading Packages:
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Erasing    : sysstat-9.0.4-22.el6.x86_64                                                                                1/6
Erasing    : cronie-1.4.4-12.el6.x86_64                                                                                 2/6
Erasing    : cronie-anacron-1.4.4-12.el6.x86_64                                                                         3/6
Erasing    : crontabs-1.10-33.el6.noarch                                                                                4/6
Erasing    : 2:postfix-2.6.6-2.2.el6_1.x86_64                                                                           5/6
Erasing    : mysql-libs-5.1.71-1.el6.x86_64                                                                             6/6
Verifying  : cronie-anacron-1.4.4-12.el6.x86_64                                                                         1/6
Verifying  : 2:postfix-2.6.6-2.2.el6_1.x86_64                                                                           2/6
Verifying  : mysql-libs-5.1.71-1.el6.x86_64                                                                             3/6
Verifying  : crontabs-1.10-33.el6.noarch                                                                                4/6
Verifying  : sysstat-9.0.4-22.el6.x86_64                                                                                5/6
Verifying  : cronie-1.4.4-12.el6.x86_64                                                                                 6/6
Removed:
mysql-libs.x86_64 0:5.1.71-1.el6                                                                                           
Dependency Removed:
cronie.x86_64 0:1.4.4-12.el6             cronie-anacron.x86_64 0:1.4.4-12.el6         crontabs.noarch 0:1.10-33.el6       
postfix.x86_64 2:2.6.6-2.2.el6_1         sysstat.x86_64 0:9.0.4-22.el6               
Complete!

 
  • 下载rpm安装包
[root@localhost src]# cd /usr/local/src/
[root@localhost src]# wget http://mirror.neu.edu.cn/mysql/Downloads/MySQL-5.6/MySQL-server-5.6.28-1.el6.x86_64.rpm
[root@localhost src]# wget http://mirror.neu.edu.cn/mysql/Downloads/MySQL-5.6/MySQL-devel-5.6.28-1.el6.x86_64.rpm
[root@localhost src]# wget http://mirror.neu.edu.cn/mysql/Downloads/MySQL-5.6/MySQL-client-5.6.28-1.el6.x86_64.rpm
[root@localhost src]# ll
total 76224
-rw-r--r--. 1 root root 18633576 Jan  6  2016 MySQL-client-5.6.28-1.el6.x86_64.rpm
-rw-r--r--. 1 root root  3421028 Jan  6  2016 MySQL-devel-5.6.28-1.el6.x86_64.rpm
-rw-r--r--. 1 root root 55991256 Jan  6  2016 MySQL-server-5.6.28-1.el6.x86_64.rpm

  • 安装mysql
[root@localhost src]# rpm -ivh MySQL-server-5.6.28-1.el6.x86_64.rpm 
[root@localhost src]# rpm -ivh MySQL-client-5.6.28-1.el6.x86_64.rpm
[root@localhost src]# rpm -ivh MySQL-devel-5.6.28-1.el6.x86_64.rpm
[root@localhost src]# cp /usr/share/mysql/my-default.cnf /etc/my.cnf

  • 初始化MySQL及设置密码
 
[root@localhost src]# /usr/bin/mysql_install_db
[root@localhost src]# service mysql start
Starting MySQL. SUCCESS!
[root@localhost src]# cat /root/.mysql_secret
# The random password set for the root user at Sat Jan  7 19:43:53 2017 (local time): boYCenylJSR0j0hQ
[root@localhost src]# mysql -uroot -pboYCenylJSR0j0hQ
Warning: Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.6.28
Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> SET PASSWORD = PASSWORD('xiaojf');
mysql> exit;
Bye
[root@localhost src]# mysql -uroot -pxiaojf

 
  • 允许远程登陆
 
mysql> user mysql;
mysql> select host,user,password from user;
+-----------------------+------+-------------------------------------------+
| host                  | user | password                                  |
+-----------------------+------+-------------------------------------------+
| localhost             | root | *106F597EE6049BC770FAE0656C3DB58BBA2F444B |
| localhost.localdomain | root | *81AF1E1D22B506785504F88874E314CE6AA1C173 |
| 127.0.0.1             | root | *81AF1E1D22B506785504F88874E314CE6AA1C173 |
| ::1                   | root | *81AF1E1D22B506785504F88874E314CE6AA1C173 |
+-----------------------+------+-------------------------------------------+
4 rows in set (0.00 sec)
mysql> update user set password=password('xiaojf') where user = 'xiaojf';
Query OK, 0 rows affected (0.00 sec)
Rows matched: 0  Changed: 0  Warnings: 0
mysql> update user set host='%' where user='root' and host='localhost';
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@localhost src]# mysql -uroot -pxiaojf;
Warning: Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.6.28 MySQL Community Server (GPL)
Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>

 
  • MySQL的默认安装位置
1 /var/lib/mysql/               #数据库目录
2 /usr/share/mysql              #配置文件目录
3 /usr/bin                     #相关命令目录
4 /etc/init.d/mysql              #启动脚本
  • 创建普通用户,并允许远程访问
[root@localhost src]# vi /etc/sysconfig/iptables
# Firewall configuration written by system-config-firewall
# Manual customization of this file is not recommended.
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
-A INPUT -p icmp -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
-A INPUT -j REJECT --reject-with icmp-host-prohibited
-A FORWARD -j REJECT --reject-with icmp-host-prohibited
COMMIT
[root@localhost src]# service iptables restart
iptables: Setting chains to policy ACCEPT: filter          [  OK  ]
iptables: Flushing firewall rules:                         [  OK  ]
iptables: Unloading modules:                               [  OK  ]
iptables: Applying firewall rules:                         [  OK  ]
[root@localhost src]# mysql -uroot -pxiaojf;
mysql> grant all privileges on *.* to 'xiaojf'@'%' identified by 'xiaojf';
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

  • 修改字符集
 
[mysqld]
port            = 3306
character_set_server=utf8
character_set_client=utf8
collation-server=utf8_general_ci
lower_case_table_names=1
max_connections=1000

  • 检查MySQL及相关RPM包,是否安装,如果有安装,则移除(rpm –e 名称)
 
[root@localhost share]# rpm -qa | grep -i mysql
MySQL-client-5.6.28-1.el6.x86_64
MySQL-devel-5.6.28-1.el6.x86_64
mysql-libs-5.1.71-1.el6.x86_64
[root@localhost share]# yum -y remove mysql-libs*
Loaded plugins: fastestmirror, refresh-packagekit, security
Setting up Remove Process
Resolving Dependencies
--> Running transaction check
---> Package mysql-libs.x86_64 0:5.1.71-1.el6 will be erased
--> Processing Dependency: libmysqlclient.so.16()(64bit) for package: 2:postfix-2.6.6-2.2.el6_1.x86_64
--> Processing Dependency: libmysqlclient.so.16(libmysqlclient_16)(64bit) for package: 2:postfix-2.6.6-2.2.el6_1.x86_64
--> Processing Dependency: mysql-libs for package: 2:postfix-2.6.6-2.2.el6_1.x86_64
--> Running transaction check
---> Package postfix.x86_64 2:2.6.6-2.2.el6_1 will be erased
--> Processing Dependency: /usr/sbin/sendmail for package: cronie-1.4.4-12.el6.x86_64
--> Running transaction check
---> Package cronie.x86_64 0:1.4.4-12.el6 will be erased
--> Processing Dependency: cronie = 1.4.4-12.el6 for package: cronie-anacron-1.4.4-12.el6.x86_64
--> Running transaction check
---> Package cronie-anacron.x86_64 0:1.4.4-12.el6 will be erased
--> Processing Dependency: /etc/cron.d for package: crontabs-1.10-33.el6.noarch
--> Processing Dependency: /etc/cron.d for package: sysstat-9.0.4-22.el6.x86_64
--> Restarting Dependency Resolution with new changes.
--> Running transaction check
---> Package crontabs.noarch 0:1.10-33.el6 will be erased
---> Package sysstat.x86_64 0:9.0.4-22.el6 will be erased
--> Finished Dependency Resolution
Dependencies Resolved
==============================================================================================================================
Package                 Arch            Version                      Repository                                         Size
==============================================================================================================================
Removing:
mysql-libs              x86_64          5.1.71-1.el6                 @anaconda-CentOS-201311272149.x86_64/6.5          4.0 M
Removing for dependencies:
cronie                  x86_64          1.4.4-12.el6                 @anaconda-CentOS-201311272149.x86_64/6.5          174 k
cronie-anacron          x86_64          1.4.4-12.el6                 @anaconda-CentOS-201311272149.x86_64/6.5           43 k
crontabs                noarch          1.10-33.el6                  @anaconda-CentOS-201311272149.x86_64/6.5          2.4 k
postfix                 x86_64          2:2.6.6-2.2.el6_1            @anaconda-CentOS-201311272149.x86_64/6.5          9.7 M
sysstat                 x86_64          9.0.4-22.el6                 @anaconda-CentOS-201311272149.x86_64/6.5          824 k
Transaction Summary
==============================================================================================================================
Remove        6 Package(s)
Installed size: 15 M
Downloading Packages:
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Erasing    : sysstat-9.0.4-22.el6.x86_64                                                                                1/6
Erasing    : cronie-1.4.4-12.el6.x86_64                                                                                 2/6
Erasing    : cronie-anacron-1.4.4-12.el6.x86_64                                                                         3/6
Erasing    : crontabs-1.10-33.el6.noarch                                                                                4/6
Erasing    : 2:postfix-2.6.6-2.2.el6_1.x86_64                                                                           5/6
Erasing    : mysql-libs-5.1.71-1.el6.x86_64                                                                             6/6
Verifying  : cronie-anacron-1.4.4-12.el6.x86_64                                                                         1/6
Verifying  : 2:postfix-2.6.6-2.2.el6_1.x86_64                                                                           2/6
Verifying  : mysql-libs-5.1.71-1.el6.x86_64                                                                             3/6
Verifying  : crontabs-1.10-33.el6.noarch                                                                                4/6
Verifying  : sysstat-9.0.4-22.el6.x86_64                                                                                5/6
Verifying  : cronie-1.4.4-12.el6.x86_64                                                                                 6/6
Removed:
mysql-libs.x86_64 0:5.1.71-1.el6                                                                                           
Dependency Removed:
cronie.x86_64 0:1.4.4-12.el6             cronie-anacron.x86_64 0:1.4.4-12.el6         crontabs.noarch 0:1.10-33.el6       
postfix.x86_64 2:2.6.6-2.2.el6_1         sysstat.x86_64 0:9.0.4-22.el6               
Complete!

 
  • 下载rpm安装包
[root@localhost src]# cd /usr/local/src/
[root@localhost src]# wget http://mirror.neu.edu.cn/mysql/Downloads/MySQL-5.6/MySQL-server-5.6.28-1.el6.x86_64.rpm
[root@localhost src]# wget http://mirror.neu.edu.cn/mysql/Downloads/MySQL-5.6/MySQL-devel-5.6.28-1.el6.x86_64.rpm
[root@localhost src]# wget http://mirror.neu.edu.cn/mysql/Downloads/MySQL-5.6/MySQL-client-5.6.28-1.el6.x86_64.rpm
[root@localhost src]# ll
total 76224
-rw-r--r--. 1 root root 18633576 Jan  6  2016 MySQL-client-5.6.28-1.el6.x86_64.rpm
-rw-r--r--. 1 root root  3421028 Jan  6  2016 MySQL-devel-5.6.28-1.el6.x86_64.rpm
-rw-r--r--. 1 root root 55991256 Jan  6  2016 MySQL-server-5.6.28-1.el6.x86_64.rpm

  • 安装mysql
[root@localhost src]# rpm -ivh MySQL-server-5.6.28-1.el6.x86_64.rpm 
[root@localhost src]# rpm -ivh MySQL-client-5.6.28-1.el6.x86_64.rpm
[root@localhost src]# rpm -ivh MySQL-devel-5.6.28-1.el6.x86_64.rpm
[root@localhost src]# cp /usr/share/mysql/my-default.cnf /etc/my.cnf

  • 初始化MySQL及设置密码
 
[root@localhost src]# /usr/bin/mysql_install_db
[root@localhost src]# service mysql start
Starting MySQL. SUCCESS!
[root@localhost src]# cat /root/.mysql_secret
# The random password set for the root user at Sat Jan  7 19:43:53 2017 (local time): boYCenylJSR0j0hQ
[root@localhost src]# mysql -uroot -pboYCenylJSR0j0hQ
Warning: Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.6.28
Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> SET PASSWORD = PASSWORD('xiaojf');
mysql> exit;
Bye
[root@localhost src]# mysql -uroot -pxiaojf

 
  • 允许远程登陆
 
mysql> user mysql;
mysql> select host,user,password from user;
+-----------------------+------+-------------------------------------------+
| host                  | user | password                                  |
+-----------------------+------+-------------------------------------------+
| localhost             | root | *106F597EE6049BC770FAE0656C3DB58BBA2F444B |
| localhost.localdomain | root | *81AF1E1D22B506785504F88874E314CE6AA1C173 |
| 127.0.0.1             | root | *81AF1E1D22B506785504F88874E314CE6AA1C173 |
| ::1                   | root | *81AF1E1D22B506785504F88874E314CE6AA1C173 |
+-----------------------+------+-------------------------------------------+
4 rows in set (0.00 sec)
mysql> update user set password=password('xiaojf') where user = 'xiaojf';
Query OK, 0 rows affected (0.00 sec)
Rows matched: 0  Changed: 0  Warnings: 0
mysql> update user set host='%' where user='root' and host='localhost';
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@localhost src]# mysql -uroot -pxiaojf;
Warning: Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.6.28 MySQL Community Server (GPL)
Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>

 
  • MySQL的默认安装位置
1 /var/lib/mysql/               #数据库目录
2 /usr/share/mysql              #配置文件目录
3 /usr/bin                     #相关命令目录
4 /etc/init.d/mysql              #启动脚本
  • 创建普通用户,并允许远程访问
[root@localhost src]# vi /etc/sysconfig/iptables
# Firewall configuration written by system-config-firewall
# Manual customization of this file is not recommended.
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
-A INPUT -p icmp -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
-A INPUT -j REJECT --reject-with icmp-host-prohibited
-A FORWARD -j REJECT --reject-with icmp-host-prohibited
COMMIT
[root@localhost src]# service iptables restart
iptables: Setting chains to policy ACCEPT: filter          [  OK  ]
iptables: Flushing firewall rules:                         [  OK  ]
iptables: Unloading modules:                               [  OK  ]
iptables: Applying firewall rules:                         [  OK  ]
[root@localhost src]# mysql -uroot -pxiaojf;
mysql> grant all privileges on *.* to 'xiaojf'@'%' identified by 'xiaojf';
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

  • 修改字符集
 
[mysqld]
port            = 3306
character_set_server=utf8
character_set_client=utf8
collation-server=utf8_general_ci
lower_case_table_names=1
max_connections=1000

posted @ 2017-03-16 20:00 Xiao.jf 阅读(...) 评论(...) 编辑 收藏

mysql5.6 rpm安装配置相关推荐

  1. mysql5.6.28安装教程百度经验_Linux(Ubuntu)下Mysql5.6.28安装配置方法图文教程

    mysql5.6.28安装配置方法 1.系统基本信息查看,尝试yum安装 $ sudo -s # df -lh Filesystem Size Used Avail Use% Mounted on / ...

  2. mysql5.6免安装配置(菜鸟版)

    mysql5.6免安装配置 MySQL5.6.13安装步骤(Windows7 32位) 1. 下载MySQL Community Server 5.6.13 2. 解压MySQL压缩包 将以下载的My ...

  3. apache2.2 + php5.2.4 + mysql5.0.x 安装配置

    apache2.2  + php5.2.4  + mysql5.0.x 安装配置 我下载的都是安装版本,先对简单,需要修改的配置不多 发生错误后在google baidu上查找,所出现的错误都能找到, ...

  4. mysql5.7 zip安装配置_MySQL5.7的.zip文件的配置安装

    由于MySQL5.7之后在javaEE中交互的端口发生了变化,而MySQL官网中5.6.5.7版本64位的只有.zip文件,而.zip文件不像直接下载installer一样可以获取到初始密码,需要通过 ...

  5. mysql5.6.33安装教程_Linux下mysql5.6.33安装配置教程

    本教程为大家分享了mysql5.6.33在linux下的安装配置方法,供大家参考,具体内容如下 1.下载 下载地址:http://dev.mysql.com/downloads/mysql/5.6.h ...

  6. linux nginx rpm 安装配置,Centos下安装nginx rpm包

    1 在nginx官方网站下载一个rpm包,下载地址是:http://nginx.org/en/download.html wget http://nginx.org/packages/centos/6 ...

  7. 在32位Win7下安装MySQL5.7.10安装配置过程

    MySQL的安装配置过程很多人都写过,拼凑起来也非常实用.现在将我自己碎片化的安装配置过程写下来,作为自己的一个经验累积. 我在本地安装的是MySQL5.7.10版本. MySQL5.7.10的安装配 ...

  8. mysql5.7.35安装配置教程【超级详细安装教程】

    MySQL5.7.35安装教程 教程很简单一看就会(当然你如果嫌麻烦可以直接联系我远程安装@:1438608594:价格:19.9/次) 方法一:以压缩包的形式进行安装 方法二:以安装程序方式进行安装 ...

  9. linux mysql 5.7 配置_linux下mysql5.7的安装配置

    mysql官方下载地址: https://dev.mysql.com/downloads/mysql/ 安装步骤: # https://cdn.mysql.com//Downloads/MySQL-5 ...

最新文章

  1. 智能产品AI服务智商的权重研究|未来研究
  2. CSS基础——position位置属性
  3. CentOS下python-mysqldb安装
  4. scanf 接收 空格 输入_【C/C++】【输入】关于scanf:输入空格,多次使用
  5. 纯css制作带三角(兼容所有浏览器)
  6. mysql集群需要几个ip_rac集群3组机器,scan到底需要几个IP?
  7. BCB线程的互斥与同步
  8. 程序员,你可以更优秀些!加油!
  9. bookstrap必备的基础知识
  10. 性能,不是不重要,而是,它没有可维护性重要
  11. emule最新服务器地址,emule更新服务器列表
  12. python 比对两个excel表数据_python 如何快速找出两个电子表中数据的差异
  13. Java简单猜数字游戏
  14. phalapi可以依赖注入么_PhalApi:[2.11] 核心思想:DI依赖注入 让资源更可控
  15. iOS开发:设置App名称,设置App icon图标,设置App启动图
  16. CIsco思科三层交换配置DHCP,客户端动态获取
  17. 日本转运海淘包裹被税、退运处理流程详解—北京篇
  18. 把阿拉伯数字翻译成中文大写数字
  19. Tomcat:-Djava.net.preferIPv4Stack=true只支持ipv4
  20. 基于树莓派和OpenCV的人脸识别

热门文章

  1. eco淘客机器人-ECO云返利系统淘客
  2. 古代司法的体恤刑慎杀制度
  3. 华为摄像头(海思3519A/3516D)开发环境nfs共享目录
  4. Opncv 实现拍照、颜色识别和阈值选取
  5. U盘写保护无法格式化
  6. canvas实现粒子跟随鼠标动画
  7. perl应用:snp提取后续处理:非ATGC行的删除
  8. ida符号文件路径设置
  9. ERP与PDM集成基本原理
  10. 如何让自己的exe程序开机自启动