一、离线安装包 文件准备

  这里以mysql-5.6.23-linux-glibc2.5-x86_64.tar.gz为例,记一次MySQL 5.6.x 的生产环境离线部署过程。使用SecureCRT连接生产部署的机器,这里注意使用root用户进行操作。

  mysql-5.6.23-linux-glibc2.5-x86_64.tar.gz文件,已放到网盘(为什么不放到仓库的原因:****,习惯了 ),

    链接:https://pan.baidu.com/s/1aOC4jUiVa5KcLS7dQwyCbA          提取码:kvuo

  1、检查是否安装过mysqld

  1. [root@slave054 local]# ps -ef|grep mysqld
  2. root : pts/ :: grep --color=auto mysqld

  3. [root@slave054 local]# rpm -qa |grep -i mysql

  4. [root@slave054 local]# ps -ef|grep mysqld
  5. root : pts/ :: grep --color=auto mysqld

  2、切换到/usr/local目录下

  1. [root@slave054 ~]# cd /usr/local
  2. [root@slave054 local]# pwd
  3. /usr/local
  4. [root@slave054 local]#

 

  3、使用rz 上传mysql-5.6.23-linux-glibc2.5-x86_64.tar.gz压缩文件

  1. [root@slave054 local]# ll
  2. total
  3. drwxr-xr-x. root root Apr bin
  4. drwxr-xr-x. root root Apr etc
  5. drwxr-xr-x. root root Apr games
  6. drwxr-xr-x. root root Apr include
  7. drwxr-xr-x. root root Apr lib
  8. drwxr-xr-x. root root Apr lib64
  9. drwxr-xr-x. root root Apr libexec
  10. drwxr-xr-x. root root Apr sbin
  11. drwxr-xr-x. root root Nov : share
  12. drwxr-xr-x. root root Apr src
  13. [root@slave054 local]# rz
  14. rz waiting to receive.
  15. zmodem trl+C ȡ
  16.  
  17. % KB KB/s :: Errorssc2.-x86_64.tar.gz...
  18.  
  19. [root@slave054 local]#

  20. [root@slave054 local]# ll
  21. total
  22. drwxr-xr-x. root root Apr bin
  23. drwxr-xr-x. root root Apr etc
  24. drwxr-xr-x. root root Apr games
  25. drwxr-xr-x. root root Apr include
  26. drwxr-xr-x. root root Apr lib
  27. drwxr-xr-x. root root Apr lib64
  28. drwxr-xr-x. root root Apr libexec
  29. -rw-r--r--. root root Nov : mysql-5.6.-linux-glibc2.-x86_64.tar.gz
  30. drwxr-xr-x. root root Apr sbin
  31. drwxr-xr-x. root root Nov : share
  32. drwxr-xr-x. root root Apr src
  33. [root@slave054 local]#

  

二、解压文件并建立软连接

  1、解压mysql-5.6.23-linux-glibc2.5-x86_64.tar.gz

  1. [root@slave054 local]# tar xzvf mysql-5.6.-linux-glibc2.-x86_64.tar.gz

  2、建立软连接

  1. [root@slave054 local]# ln -s mysql-5.6.-linux-glibc2.-x86_64 mysql

  2. [root@slave054 local]# ll
  3. total
  4. drwxr-xr-x. root root Apr bin
  5. drwxr-xr-x. root root Apr etc
  6. drwxr-xr-x. root root Apr games
  7. drwxr-xr-x. root root Apr include
  8. drwxr-xr-x. root root Apr lib
  9. drwxr-xr-x. root root Apr lib64
  10. drwxr-xr-x. root root Apr libexec
  11. lrwxrwxrwx. root root Nov : mysql -> mysql-5.6.-linux-glibc2.-x86_64
  12. drwxr-xr-x. root root Nov : mysql-5.6.-linux-glibc2.-x86_64
  13. -rw-r--r--. root root Nov : mysql-5.6.-linux-glibc2.-x86_64.tar.gz
  14. drwxr-xr-x. root root Apr sbin
  15. drwxr-xr-x. root root Nov : share
  16. drwxr-xr-x. root root Apr src
  17. [root@slave054 local]#

三、用户和用户组

  1、添加dba用户组

  1. [root@slave054 local]# groupadd -g dba

  2、新建mysqladmin用户

  1. [root@slave054 local]# useradd -u -g dba -G root -d /usr/local/mysql mysqladmin
  2. useradd: warning: the home directory already exists.
  3. Not copying any file from skel directory into it.
  4.  
  5. [root@slave054 local]# id mysqladmin
  6. uid=(mysqladmin) gid=(dba) groups=(dba),(root)
  7.  
  8. [root@slave054 local]# passwd mysqladmin
  9. Changing password for user mysqladmin.
  10. New password:
  11. BAD PASSWORD: The password is shorter than characters
  12. Retype new password:
  13. passwd: all authentication tokens updated successfully.
  14. [root@slave054 local]#

  如果mysqladmin 已经存在,则执行如下命令:

  1. usermod -u -g dba -G root -d /usr/local/mysql mysqladmin

  3、复制环境变量配置文件至mysqladmin用户的home目录

  1. [root@slave054 local]# cp /etc/skel/.* /usr/local/mysql
  2. cp: omitting directory ‘/etc/skel/.’
  3. cp: omitting directory ‘/etc/skel/..’
  4. cp: omitting directory ‘/etc/skel/.mozilla
  5. [root@slave054 local]#

  4、my.cnf文件配置

  1. [root@slave054 local]# cd /etc/
  2. [root@slave054 etc]# vi my.cnf
  1. [mysqld]
  2. datadir=/var/lib/mysql
  3. socket=/var/lib/mysql/mysql.sock
  4. # Disabling symbolic-links is recommended to prevent assorted security risks
  5. symbolic-links=
  6. # Settings user and group are ignored when systemd is used.
  7. # If you need to run mysqld under a different user or group,
  8. # customize your systemd unit file for mariadb according to the
  9. # instructions in http://fedoraproject.org/wiki/Systemd
  10.  
  11. [mysqld_safe]
  12. log-error=/var/log/mariadb/mariadb.log
  13. pid-file=/var/run/mariadb/mariadb.pid
  14.  
  15. #
  16. # include all files from the config directory
  17. #
  18. !includedir /etc/my.cnf.d
  19.  
  20. ~
  21. ~
  22. ~
  23. ~
  24. "my.cnf" 19L, 570C

my.cnf默认配置

  将以下的内容,替换掉原来默认的my.cnf默认配置内容,注意vim要进入-- INSERT --模式才能开始粘贴,否则粘贴的内容会不完全

  1. [mysqld]
  2. datadir=/var/lib/mysql
  3. socket=/var/lib/mysql/mysql.sock
  4. # Disabling symbolic-links is recommended to prevent assorted security risks
  5. symbolic-links=
  6. # Settings user and group are ignored when systemd is used.
  7. # If you need to run mysqld under a different user or group,
  8. # customize your systemd unit file for mariadb according to the
  9. # instructions in http://fedoraproject.org/wiki/Systemd
  10.  
  11. [mysqld_safe]
  12. log-error=/var/log/mariadb/mariadb.log
  13. pid-file=/var/run/mariadb/mariadb.pid
  14.  
  15. #
  16. # include all files from the config directory
  17. #
  18. !includedir /etc/my.cnf.d
  19. [client]
  20. port =
  21. socket = /usr/local/mysql/data/mysql.sock
  22.  
  23. [mysqld]
  24. port =
  25. socket = /usr/local/mysql/data/mysql.sock
  26.  
  27. skip-external-locking
  28. key_buffer_size = 256M
  29. sort_buffer_size = 2M
  30. read_buffer_size = 2M
  31. read_rnd_buffer_size = 4M
  32. query_cache_size= 32M
  33. max_allowed_packet = 16M
  34. myisam_sort_buffer_size=128M
  35. tmp_table_size=32M
  36.  
  37. table_open_cache =
  38. thread_cache_size =
  39. wait_timeout =
  40. interactive_timeout =
  41. max_connections =
  42.  
  43. # Try number of CPU's*2 for thread_concurrency
  44. thread_concurrency =
  45.  
  46. #isolation level and default engine
  47. default-storage-engine = INNODB
  48. transaction-isolation = READ-COMMITTED
  49.  
  50. server-id =
  51. basedir = /usr/local/mysql
  52. datadir = /usr/local/mysql/data
  53. pid-file = /usr/local/mysql/data/hostname.pid
  54.  
  55. #open performance schema
  56. log-warnings
  57. sysdate-is-now
  58.  
  59. binlog_format = MIXED
  60. log_bin_trust_function_creators=
  61. log-error = /usr/local/mysql/data/hostname.err
  62. log-bin=/usr/local/mysql/arch/mysql-bin
  63. #other logs
  64. #general_log =
  65. #general_log_file = /usr/local/mysql/data/general_log.err
  66. #slow_query_log=
  67. #slow_query_log_file=/usr/local/mysql/data/slow_log.err
  68.  
  69. #for replication slave
  70. #log-slave-updates
  71. #sync_binlog =
  72.  
  73. #for innodb options
  74. innodb_data_home_dir = /usr/local/mysql/data/
  75. innodb_data_file_path = ibdata1:500M:autoextend
  76. innodb_log_group_home_dir = /usr/local/mysql/arch
  77. innodb_log_files_in_group =
  78. innodb_log_file_size = 200M
  79.  
  80. innodb_buffer_pool_size = 2048M
  81. innodb_additional_mem_pool_size = 50M
  82. innodb_log_buffer_size = 16M
  83.  
  84. innodb_lock_wait_timeout =
  85. #innodb_thread_concurrency =
  86. innodb_flush_log_at_trx_commit =
  87. innodb_locks_unsafe_for_binlog=
  88.  
  89. #innodb io features: add for mysql5.5.8
  90. performance_schema
  91. innodb_read_io_threads=
  92. innodb-write-io-threads=
  93. innodb-io-capacity=
  94. #purge threads change default() to for purge
  95. innodb_purge_threads=
  96. innodb_use_native_aio=on
  97.  
  98. #case-sensitive file names and separate tablespace
  99. innodb_file_per_table =
  100. lower_case_table_names=
  101.  
  102. [mysqldump]
  103. quick
  104. max_allowed_packet = 16M
  105.  
  106. [mysql]
  107. no-auto-rehash
  108.  
  109. [mysqlhotcopy]
  110. interactive-timeout
  111.  
  112. [myisamchk]
  113. key_buffer_size = 256M
  114. sort_buffer_size = 256M
  115. read_buffer = 2M
  116. write_buffer = 2M

替换配置后的效果

  如果需要进行mysql调优,只需要调整*_buffer_size的参数即可,切记根据实际需求修改。

  注意:

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

  5、权限与文件所有者

  1. [root@slave054 etc]# cd -
  2. /usr/local
  3.  
  4. [root@slave054 local]# chown mysqladmin:dba /etc/my.cnf
  5.  
  6. [root@slave054 local]# chmod /etc/my.cnf
  7.  
  8. [root@slave054 local]# ll /etc/my.cnf
  9. -rw-r-----. mysqladmin dba Nov : /etc/my.cnf
  10.  
  11. [root@slave054 local]# ll |grep mysql
  12. lrwxrwxrwx. root root Nov : mysql -> mysql-5.6.-linux-glibc2.-x86_64
  13. drwxr-xr-x. root root Nov : mysql-5.6.-linux-glibc2.-x86_64
  14. -rw-r--r--. root root Nov : mysql-5.6.-linux-glibc2.-x86_64.tar.gz
  15.  
  16. [root@slave054 local]# chown -R mysqladmin:dba /usr/local/mysql
  17.  
  18. [root@slave054 local]# ll |grep mysql
  19. lrwxrwxrwx. mysqladmin dba Nov : mysql -> mysql-5.6.-linux-glibc2.-x86_64
  20. drwxr-xr-x. root root Nov : mysql-5.6.-linux-glibc2.-x86_64
  21. -rw-r--r--. root root Nov : mysql-5.6.-linux-glibc2.-x86_64.tar.gz
  22.  
  23. [root@slave054 local]# chown -R mysqladmin:dba /usr/local/mysql-5.6.-linux-glibc2.-x86_64
  24.  
  25. [root@slave054 local]# ll |grep mysql
  26. lrwxrwxrwx. mysqladmin dba Nov : mysql -> mysql-5.6.-linux-glibc2.-x86_64
  27. drwxr-xr-x. mysqladmin dba Nov : mysql-5.6.-linux-glibc2.-x86_64
  28. -rw-r--r--. root root Nov : mysql-5.6.-linux-glibc2.-x86_64.tar.gz
  29.  
  30. [root@slave054 local]# chmod -R /usr/local/mysql
  31.  
  32. [root@slave054 local]# chmod -R /usr/local/mysql-5.6.-linux-glibc2.-x86_64
  33.  
  34. [root@slave054 local]# ll |grep mysql
  35. lrwxrwxrwx. mysqladmin dba Nov : mysql -> mysql-5.6.-linux-glibc2.-x86_64
  36. drwxr-xr-x. mysqladmin dba Nov : mysql-5.6.-linux-glibc2.-x86_64
  37. -rw-r--r--. root root Nov : mysql-5.6.-linux-glibc2.-x86_64.tar.gz
  38. [root@slave054 local]#

四、mysqladmin用户配置mysql

  1、登录mysqladmin用户

  1. [root@slave054 local]# su - mysqladmin
  2. [mysqladmin@slave054 ~]$ pwd
  3. /usr/local/mysql
  4. [mysqladmin@slave054 ~]$ ll
  5. total
  6. drwxr-xr-x. mysqladmin dba Nov : bin
  7. -rwxr-xr-x. mysqladmin dba Jan COPYING
  8. drwxr-xr-x. mysqladmin dba Nov : data
  9. drwxr-xr-x. mysqladmin dba Nov : docs
  10. drwxr-xr-x. mysqladmin dba Nov : include
  11. -rwxr-xr-x. mysqladmin dba Jan INSTALL-BINARY
  12. drwxr-xr-x. mysqladmin dba Nov : lib
  13. drwxr-xr-x. mysqladmin dba Nov : man
  14. drwxr-xr-x. mysqladmin dba Nov : mysql-test
  15. -rwxr-xr-x. mysqladmin dba Jan README
  16. drwxr-xr-x. mysqladmin dba Nov : scripts
  17. drwxr-xr-x. mysqladmin dba Nov : share
  18. drwxr-xr-x. mysqladmin dba Nov : sql-bench
  19. drwxr-xr-x. mysqladmin dba Nov : support-files
  20. [mysqladmin@slave054 ~]$

  2、新建backup目录

  1. [mysqladmin@slave054 ~]$ mkdir arch backup

  3、使用scripts安装mysql_install_db

  1. [mysqladmin@slave054 ~]$ scripts/mysql_install_db
  2. Installing MySQL system tables...-- :: [Warning] 'THREAD_CONCURRENCY' is deprecated and will be removed in a future release.
  3. -- :: [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
  4. OK
  5.  
  6. Filling help tables...-- :: [Warning] 'THREAD_CONCURRENCY' is deprecated and will be removed in a future release.
  7. -- :: [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
  8. OK
  9.  
  10. To start mysqld at boot time you have to copy
  11. support-files/mysql.server to the right place for your system
  12.  
  13. PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
  14. To do so, start the server, then issue the following commands:
  15.  
  16. /usr/local/mysql/bin/mysqladmin -u root password 'new-password'
  17. /usr/local/mysql/bin/mysqladmin -u root -h slave054 password 'new-password'
  18.  
  19. Alternatively you can run:
  20.  
  21. /usr/local/mysql/bin/mysql_secure_installation
  22.  
  23. which will also give you the option of removing the test
  24. databases and anonymous user created by default. This is
  25. strongly recommended for production servers.
  26.  
  27. See the manual for more instructions.
  28.  
  29. You can start the MySQL daemon with:
  30.  
  31. cd . ; /usr/local/mysql/bin/mysqld_safe &
  32.  
  33. You can test the MySQL daemon with mysql-test-run.pl
  34.  
  35. cd mysql-test ; perl mysql-test-run.pl
  36.  
  37. Please report any problems at http://bugs.mysql.com/
  38.  
  39. The latest information about MySQL is available on the web at
  40.  
  41. http://www.mysql.com
  42.  
  43. Support MySQL by buying support/licenses at http://shop.mysql.com
  44.  
  45. New default config file was created as ./my.cnf and
  46. will be used by default by the server when you start it.
  47. You may edit this file to change server settings
  48.  
  49. WARNING: Default config file /etc/my.cnf exists on the system
  50. This file will be read by default by the MySQL server
  51. If you do not want to use this, either remove it, or use the
  52. --defaults-file argument to mysqld_safe when starting the server
  53.  
  54. [mysqladmin@slave054 ~]$

  注意:如果第3步骤中,报了一个

Installing MySQL system tables..../bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory #缺少libaio.so 包  错误,为了修正这个错误,就需要 先执行 如下命令,之后再切换回mysqladmin用户,继续执行第3步骤中的内容

  * 4-1、查看Linux version

  1. [mysqladmin@slave054 ~]$ cat /proc/version
  2. Linux version 3.10.0-1062.el7.x86_64 (mockbuild@kbuilder.bsys.centos.org) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-36) (GCC) ) #1 SMP Wed Aug 7 18:08:02 UTC 2019
  3. [mysqladmin@slave054 ~]$

  * 4-2、gcc  (建议使用root用户进行操作)

  1. [mysqladmin@slave054 ~]$ rpm -qa |grep gcc
  2. gcc-c++-4.8.-.el7.x86_64
  3. gcc-4.8.-.el7.x86_64
  4. libgcc-4.8.-.el7.x86_64
  5. gcc-gfortran-4.8.-.el7.x86_64
  6. [mysqladmin@slave054 ~]$

  * 4-3、切换root用户,安装libaio 包

  1. [mysqladmin@slave054 ~]$ su - root
  2. Password:
  3. Last login: Mon Nov :: CST on pts/
  4. [root@slave054 ~]# yum -y install libaio
  5. Loaded plugins: fastestmirror, langpacks
  6. Loading mirror speeds from cached hostfile
  7. * base: mirror.lzu.edu.cn
  8. * extras: mirrors.aliyun.com
  9. * updates: mirrors.aliyun.com
  10. base | 3.6 kB :
  11. extras | 2.9 kB :
  12. updates | 2.9 kB :
  13. Package libaio-0.3.-.el7.x86_64 already installed and latest version
  14. Nothing to do
  15. [root@slave054 ~]#
  1. Loaded plugins: fastestmirror
  2. Determining fastest mirrors
  3. base-tn54 | 1.1 kB :
  4. tn-appv1 | B :
  5. updates-tn54 | B :
  6. Setting up Install Process
  7. Resolving Dependencies
  8. --> Running transaction check
  9. ---> Package libaio.i386 :0.3.-3.2 set to be updated
  10. ---> Package libaio.x86_64 :0.3.-3.2 set to be updated
  11. --> Finished Dependency Resolution
  12.  
  13. Dependencies Resolved
  14.  
  15. ==============================================================================================================================
  16. Package Arch Version Repository Size
  17. ==============================================================================================================================
  18. Installing:
  19. libaio i386 0.3.-3.2 base-tn54 k
  20. libaio x86_64 0.3.-3.2 base-tn54 k
  21.  
  22. Transaction Summary
  23. ==============================================================================================================================
  24. Install Package(s)
  25. Update Package(s)
  26. Remove Package(s)
  27.  
  28. Total download size: k
  29. Downloading Packages:
  30. (/): libaio-0.3.-3.2.i386.rpm | kB :
  31. (/): libaio-0.3.-3.2.x86_64.rpm | kB :
  32. ------------------------------------------------------------------------------------------------------------------------------
  33. Total kB/s | kB :
  34. Running rpm_check_debug
  35. Running Transaction Test
  36. Finished Transaction Test
  37. Transaction Test Succeeded
  38. Running Transaction
  39. Installing : libaio /
  40. Installing : libaio /
  41.  
  42. Installed:
  43. libaio.i386 :0.3.-3.2 libaio.x86_64 :0.3.-3.2
  44.  
  45. Complete!

第一次安装libaio效果

  * 4-4、重新切换mysqladmin用户

  1. [root@slave054 ~]# su - mysqladmin
  2. Last login: Mon Nov :: CST on pts/
  3. [mysqladmin@slave054 ~]$ pwd
  4. /usr/local/mysql
  5. [mysqladmin@slave054 ~]$

五、初始化db

  1. [mysqladmin@slave054 ~]$ scripts/mysql_install_db --user=mysqladmin --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data
  1. [mysqladmin@slave054 ~]$ scripts/mysql_install_db --user=mysqladmin --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data
  2. Installing MySQL system tables...-- :: [Warning] 'THREAD_CONCURRENCY' is deprecated and will be removed in a future release.
  3. -- :: [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
  4. OK
  5.  
  6. Filling help tables...-- :: [Warning] 'THREAD_CONCURRENCY' is deprecated and will be removed in a future release.
  7. -- :: [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
  8. OK
  9.  
  10. To start mysqld at boot time you have to copy
  11. support-files/mysql.server to the right place for your system
  12.  
  13. PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
  14. To do so, start the server, then issue the following commands:
  15.  
  16. /usr/local/mysql/bin/mysqladmin -u root password 'new-password'
  17. /usr/local/mysql/bin/mysqladmin -u root -h slave054 password 'new-password'
  18.  
  19. Alternatively you can run:
  20.  
  21. /usr/local/mysql/bin/mysql_secure_installation
  22.  
  23. which will also give you the option of removing the test
  24. databases and anonymous user created by default. This is
  25. strongly recommended for production servers.
  26.  
  27. See the manual for more instructions.
  28.  
  29. You can start the MySQL daemon with:
  30.  
  31. cd . ; /usr/local/mysql/bin/mysqld_safe &
  32.  
  33. You can test the MySQL daemon with mysql-test-run.pl
  34.  
  35. cd mysql-test ; perl mysql-test-run.pl
  36.  
  37. Please report any problems at http://bugs.mysql.com/
  38.  
  39. The latest information about MySQL is available on the web at
  40.  
  41. http://www.mysql.com
  42.  
  43. Support MySQL by buying support/licenses at http://shop.mysql.com
  44.  
  45. WARNING: Found existing config file /usr/local/mysql/my.cnf on the system.
  46. Because this file might be in use, it was not replaced,
  47. but was used in bootstrap (unless you used --defaults-file)
  48. and when you later start the server.
  49. The new default config file was created as /usr/local/mysql/my-new.cnf,
  50. please compare it with your file and take the changes you need.
  51.  
  52. WARNING: Default config file /etc/my.cnf exists on the system
  53. This file will be read by default by the MySQL server
  54. If you do not want to use this, either remove it, or use the
  55. --defaults-file argument to mysqld_safe when starting the server
  56.  
  57. [mysqladmin@slave054 ~]$

执行后的效果

六、配置mysql 自启服务

  1、切换root用户

  1. [mysqladmin@slave054 ~]$ su - root
  2. Password:
  3. Last login: Mon Nov :: CST on pts/
  4. [root@slave054 ~]#

  2、将服务文件拷贝到init.d下,并重命名为mysql

  1. [root@slave054 ~]# cd /usr/local/mysql
  2. [root@slave054 mysql]# cp support-files/mysql.server /etc/rc.d/init.d/mysql
  3. [root@slave054 mysql]#

  3、赋予可执行权限

  1. [root@slave054 mysql]# chmod +x /etc/rc.d/init.d/mysql
  2. [root@slave054 mysql]#

  4、添加服务

  这里为了防止之前安装过mysql服务,而导致此处不成功,这里先删除服务之后再安装服务。

  1. [root@slave054 mysql]# chkconfig --del mysql
  2. [root@slave054 mysql]# chkconfig --add mysql
  3. [root@slave054 mysql]# chkconfig --level mysql on
  4. [root@slave054 mysql]#

  5、写入便捷操作

  1. [root@slave054 mysql]# echo 'su - mysqladmin -c "/etc/init.d/mysql start --federated"' >>/etc/rc.local
  2. [root@slave054 mysql]# tail /etc/rc.local
  3. # to run scripts during boot instead of using this file.
  4. #
  5. # In contrast to previous versions due to parallel execution during boot
  6. # this script will NOT be run after all other services.
  7. #
  8. # Please note that you must run 'chmod +x /etc/rc.d/rc.local' to ensure
  9. # that this script will be executed during boot.
  10.  
  11. touch /var/lock/subsys/local
  12. su - mysqladmin -c "/etc/init.d/mysql start --federated"
  13. [root@slave054 mysql]#

七、启动mysql 服务

  1、切换mysqladmin用户

  1. [root@slave054 mysql]# su - mysqladmin
  2. Last login: Mon Nov :: CST on pts/
  3. [mysqladmin@slave054 ~]$ pwd
  4. /usr/local/mysql
  5. [mysqladmin@slave054 ~]$
建议不执行

  1. [mysqladmin@slave054 ~]$ ll
  2. total
  3. drwxr-xr-x. mysqladmin dba Nov : arch
  4. drwxr-xr-x. mysqladmin dba Nov : backup
  5. drwxr-xr-x. mysqladmin dba Nov : bin
  6. -rwxr-xr-x. mysqladmin dba Jan COPYING
  7. drwxr-xr-x. mysqladmin dba Nov : data
  8. drwxr-xr-x. mysqladmin dba Nov : docs
  9. drwxr-xr-x. mysqladmin dba Nov : include
  10. -rwxr-xr-x. mysqladmin dba Jan INSTALL-BINARY
  11. drwxr-xr-x. mysqladmin dba Nov : lib
  12. drwxr-xr-x. mysqladmin dba Nov : man
  13. -rw-r--r--. mysqladmin dba Nov : my.cnf
  14. -rw-r--r--. mysqladmin dba Nov : my-new.cnf
  15. drwxr-xr-x. mysqladmin dba Nov : mysql-test
  16. -rwxr-xr-x. mysqladmin dba Jan README
  17. drwxr-xr-x. mysqladmin dba Nov : scripts
  18. drwxr-xr-x. mysqladmin dba Nov : share
  19. drwxr-xr-x. mysqladmin dba Nov : sql-bench
  20. drwxr-xr-x. mysqladmin dba Nov : support-files
  21. [mysqladmin@slave054 ~]$ mv my.cnf my.cnf.bak
  22. [mysqladmin@slave054 ~]$ ll
  23. total
  24. drwxr-xr-x. mysqladmin dba Nov : arch
  25. drwxr-xr-x. mysqladmin dba Nov : backup
  26. drwxr-xr-x. mysqladmin dba Nov : bin
  27. -rwxr-xr-x. mysqladmin dba Jan COPYING
  28. drwxr-xr-x. mysqladmin dba Nov : data
  29. drwxr-xr-x. mysqladmin dba Nov : docs
  30. drwxr-xr-x. mysqladmin dba Nov : include
  31. -rwxr-xr-x. mysqladmin dba Jan INSTALL-BINARY
  32. drwxr-xr-x. mysqladmin dba Nov : lib
  33. drwxr-xr-x. mysqladmin dba Nov : man
  34. -rw-r--r--. mysqladmin dba Nov : my.cnf.bak
  35. -rw-r--r--. mysqladmin dba Nov : my-new.cnf
  36. drwxr-xr-x. mysqladmin dba Nov : mysql-test
  37. -rwxr-xr-x. mysqladmin dba Jan README
  38. drwxr-xr-x. mysqladmin dba Nov : scripts
  39. drwxr-xr-x. mysqladmin dba Nov : share
  40. drwxr-xr-x. mysqladmin dba Nov : sql-bench
  41. drwxr-xr-x. mysqladmin dba Nov : support-files
  42. [mysqladmin@slave054 ~]$ mysqld_safe &
  43. []
  44. [mysqladmin@slave054 ~]$ :: mysqld_safe Logging to '/usr/local/mysql/data/hostname.err'.
  45. :: mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data
  46. ^C
  47. [mysqladmin@slave054 ~]$ ps -ef|grep mysqld
  48. mysqlad+ : pts/ :: /bin/sh /usr/local/mysql/bin/mysqld_safe
  49. mysqlad+ : pts/ :: /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --plugin-dir=/usr/local/mysql/lib/plugin --log-error=/usr/local/mysql/data/hostname.err --pid-file=/usr/local/mysql/data/hostname.pid --socket=/usr/local/mysql/data/mysql.sock --port=
  50. mysqlad+ : pts/ :: grep --color=auto mysqld
  51. [mysqladmin@slave054 ~]$ netstat -tulnp | grep mysql
  52. (Not all processes could be identified, non-owned process info
  53. will not be shown, you would have to be root to see it all.)
  54. tcp6 ::: :::* LISTEN /mysqld
  55. [mysqladmin@slave054 ~]$ mv my.cnf.bak my.cnf

安全与监听-演示

  2、启动mysql 服务

  1. [mysqladmin@slave054 ~]$ service mysql start
  2. Starting MySQL SUCCESS!
  3. [mysqladmin@slave054 ~]$ service mysql status
  4. SUCCESS! MySQL running ()
  5. [mysqladmin@slave054 ~]$

  

  3、登录mysql

  1. [mysqladmin@slave054 ~]$ mysql
  2. Welcome to the MySQL monitor. Commands end with ; or \g.
  3. Your MySQL connection id is
  4. Server version: 5.6.-log MySQL Community Server (GPL)
  5.  
  6. Copyright (c) , , Oracle and/or its affiliates. All rights reserved.
  7.  
  8. Oracle is a registered trademark of Oracle Corporation and/or its
  9. affiliates. Other names may be trademarks of their respective
  10. owners.
  11.  
  12. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  13.  
  14. mysql> show databases;
  15. +--------------------+
  16. | Database |
  17. +--------------------+
  18. | information_schema |
  19. | test |
  20. +--------------------+
  21. rows in set (0.00 sec)
  22.  
  23. mysql>

 

*八、数据库部分被隐匿-解决方法 

  这里Database只有 information_schema 和 test,说明mysql数据库的user表里,存在用户名为空的账户即匿名账户,导致登录的时候是虽然用的是root,但实际是匿名登录的,通过错误提示里的''@'localhost'可以看出来

  1、先停止服务,并mysqld_safe执行

  1. [mysqladmin@slave054 ~]$ service mysql stop
  2. Shutting down MySQL.. SUCCESS!
  3. [mysqladmin@slave054 ~]$ service mysql status
  4. ERROR! MySQL is not running
  5. [mysqladmin@slave054 ~]$ mysqld_safe --skip-grant-table
  6. :: mysqld_safe Logging to '/usr/local/mysql/data/hostname.err'.
  7. :: mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data

   2、新开克隆窗口,程序登录恢复正常:

  1. [linux@slave054 ~]$ su - mysqladmin
  2. Password:
  3. Last login: Mon Nov :: CST on pts/
  4. [mysqladmin@slave054 ~]$ mysql -u root
  5. Welcome to the MySQL monitor. Commands end with ; or \g.
  6. Your MySQL connection id is
  7. Server version: 5.6.-log MySQL Community Server (GPL)
  8.  
  9. Copyright (c) , , Oracle and/or its affiliates. All rights reserved.
  10.  
  11. Oracle is a registered trademark of Oracle Corporation and/or its
  12. affiliates. Other names may be trademarks of their respective
  13. owners.
  14.  
  15. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  16.  
  17. mysql> show databases;
  18. +--------------------+
  19. | Database |
  20. +--------------------+
  21. | information_schema |
  22. | mysql |
  23. | performance_schema |
  24. | test |
  25. +--------------------+
  26. rows in set (0.00 sec)
  27.  
  28. mysql>

  

  3、删除匿名登录

  1. mysql> show databases;
  2. +--------------------+
  3. | Database |
  4. +--------------------+
  5. | information_schema |
  6. | mysql |
  7. | performance_schema |
  8. | test |
  9. +--------------------+
  10. rows in set (0.00 sec)
  11.  
  12. mysql> use mysql
  13. Database changed
  14. mysql> show tables;
  15. +---------------------------+
  16. | Tables_in_mysql |
  17. +---------------------------+
  18. | columns_priv |
  19. | db |
  20. | event |
  21. | func |
  22. | general_log |
  23. | help_category |
  24. | help_keyword |
  25. | help_relation |
  26. | help_topic |
  27. | innodb_index_stats |
  28. | innodb_table_stats |
  29. | ndb_binlog_index |
  30. | plugin |
  31. | proc |
  32. | procs_priv |
  33. | proxies_priv |
  34. | servers |
  35. | slave_master_info |
  36. | slave_relay_log_info |
  37. | slave_worker_info |
  38. | slow_log |
  39. | tables_priv |
  40. | time_zone |
  41. | time_zone_leap_second |
  42. | time_zone_name |
  43. | time_zone_transition |
  44. | time_zone_transition_type |
  45. | user |
  46. +---------------------------+
  47. rows in set (0.00 sec)
  48.  
  49. mysql> delete from user where USER='';
  50. Query OK, rows affected (0.00 sec)
  51.  
  52. mysql> FLUSH PRIVILEGES;
  53. Query OK, rows affected (0.00 sec)
  54.  
  55. mysql> \q
  56. Bye
  57. [mysqladmin@slave054 ~]$

九、修改登录密码

  1. [mysqladmin@slave054 ~]$ mysql -uroot
  2. Welcome to the MySQL monitor. Commands end with ; or \g.
  3. Your MySQL connection id is
  4. Server version: 5.6.-log MySQL Community Server (GPL)
  5.  
  6. Copyright (c) , , Oracle and/or its affiliates. All rights reserved.
  7.  
  8. Oracle is a registered trademark of Oracle Corporation and/or its
  9. affiliates. Other names may be trademarks of their respective
  10. owners.
  11.  
  12. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  13.  
  14. mysql> show databases;
  15. +--------------------+
  16. | Database |
  17. +--------------------+
  18. | information_schema |
  19. | mysql |
  20. | performance_schema |
  21. | test |
  22. +--------------------+
  23. rows in set (0.00 sec)
  24.  
  25. mysql> use mysql
  26. Database changed
  27. mysql> update user set password=password('') where user='root';
  28. Query OK, rows affected (0.00 sec)
  29. Rows matched: Changed: Warnings:
  30.  
  31. mysql> select host,user,password from user;
  32. +-----------+------+-------------------------------------------+
  33. | host | user | password |
  34. +-----------+------+-------------------------------------------+
  35. | localhost | root | *6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9 |
  36. | slave054 | root | *6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9 |
  37. | 127.0.0.1 | root | *6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9 |
  38. | :: | root | *6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9 |
  39. +-----------+------+-------------------------------------------+
  40. rows in set (0.00 sec)
  41.  
  42. mysql> delete from user where user='';
  43. Query OK, rows affected (0.00 sec)
  44.  
  45. mysql> flush privileges;
  46. Query OK, rows affected (0.00 sec)
  47.  
  48. mysql>

  在一定程度上说,mysql 5.7版本之前的初次默认密码为空,mysql 5.7以后默认密码为随机数。

十、配置无主机登录

  1. mysql> show databases;
  2. +--------------------+
  3. | Database |
  4. +--------------------+
  5. | information_schema |
  6. | mysql |
  7. | performance_schema |
  8. | test |
  9. +--------------------+
  10. rows in set (0.00 sec)
  11.  
  12. mysql> use mysql
  13. Database changed
  14. mysql> show tables;
  15. +---------------------------+
  16. | Tables_in_mysql |
  17. +---------------------------+
  18. | columns_priv |
  19. | db |
  20. | event |
  21. | func |
  22. | general_log |
  23. | help_category |
  24. | help_keyword |
  25. | help_relation |
  26. | help_topic |
  27. | innodb_index_stats |
  28. | innodb_table_stats |
  29. | ndb_binlog_index |
  30. | plugin |
  31. | proc |
  32. | procs_priv |
  33. | proxies_priv |
  34. | servers |
  35. | slave_master_info |
  36. | slave_relay_log_info |
  37. | slave_worker_info |
  38. | slow_log |
  39. | tables_priv |
  40. | time_zone |
  41. | time_zone_leap_second |
  42. | time_zone_name |
  43. | time_zone_transition |
  44. | time_zone_transition_type |
  45. | user |
  46. +---------------------------+
  47. rows in set (0.00 sec)
  48.  
  49. mysql> select host,user from user;
  50. +-----------+------+
  51. | host | user |
  52. +-----------+------+
  53. | 127.0.0.1 | root |
  54. | :: | root |
  55. | localhost | root |
  56. | slave054 | root |
  57. +-----------+------+
  58. rows in set (0.00 sec)
  59.  
  60. mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '' WITH GRANT OPTION;
  61. Query OK, rows affected (0.00 sec)
  62.  
  63. mysql> select host,user from user;
  64. +-----------+------+
  65. | host | user |
  66. +-----------+------+
  67. | % | root |
  68. | 127.0.0.1 | root |
  69. | :: | root |
  70. | localhost | root |
  71. | slave054 | root |
  72. +-----------+------+
  73. rows in set (0.00 sec)
  74.  
  75. mysql> delete from user where host !='%';
  76. Query OK, rows affected (0.00 sec)
  77.  
  78. mysql> flush privileges;
  79. Query OK, rows affected (0.00 sec)
  80.  
  81. mysql> quit
  82. Bye
  83. [mysqladmin@slave054 ~]$

  此时不能再使用mysql -uroot进行登录 ,而一定要使用 mysql -uroot -p进行登录,切记 -p后面不能写明密码,防止密码泄露!如:

  1. [mysqladmin@slave054 ~]$ mysql -uroot
  2. ERROR (): Access denied for user 'root'@'localhost' (using password: NO)
  3. [mysqladmin@slave054 ~]$ mysql -uroot -p
  4. Enter password:
  5. Welcome to the MySQL monitor. Commands end with ; or \g.
  6. Your MySQL connection id is
  7. Server version: 5.6.-log MySQL Community Server (GPL)
  8.  
  9. Copyright (c) , , Oracle and/or its affiliates. All rights reserved.
  10.  
  11. Oracle is a registered trademark of Oracle Corporation and/or its
  12. affiliates. Other names may be trademarks of their respective
  13. owners.
  14.  
  15. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  16.  
  17. mysql>

十一、写入配置到用户个人环境变量文件

  ·这里不写/etc/profile的原因:mysqladmin用户专职进行mysql的管理,独自集中管理,拒绝权利外配,所以就连全局下的root不分配。

  ·这里不写.bash_profile的原因:在使用SecureCRT连接时,.bash_profile的部分配置参数不被加载

  所以经过分析,写入 .bashrc文件,将下列内容追加到 .bashrc文件中,切记先进入-- INSERT --  模式再粘贴,否则容易发生粘贴不完全的现象

  1. # User specific environment and startup programs
  2. MYSQL_BASE=/usr/local/mysql
  3. export MYSQL_BASE
  4. PATH=$PATH:${MYSQL_BASE}/bin:/usr/kerberos/bin:/opt/bin:/bin:/usr/bin:/usr/local/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/local/mysql
  5. export PATH
  6. export PATH
  7.  
  8. unset USERNAME
  9.  
  10. #stty erase
  11. set umask to
  12. umask
  13. PS1=`uname -n`":"'$USER'":"'$PWD'":>"; export PS1
  14.  
  15. alias l="ls -ltr"
  16. alias la="ls -la"
  17. alias d="df -lk"
  18. #alias rm="rm -i"
  19. alias bg="ps -aef|grep mysql"
  20. alias base="cd /usr/local/mysql"
  21. alias bin="cd //usr/local/mysql/bin"
  22. alias dba="cd /usr/local/mysql/dba"
  23. alias sh="cd /usr/local/mysql/dba/sh"
  24. alias sql="cd /usr/local/mysql/dba/sql"
  25. alias config="cd /usr/local/mysql/dba/config"
  26. alias dbalog="cd /usr/local/mysql/dba/log"
  27. alias arch="cd /usr/local/mysql/arch"
  28. alias data="cd /usr/local/mysql/data"

 这样重新登录mysqladmin用户,会改变mysqladmin的样式,方便生产过程:

  1. [mysqladmin@slave054 ~]$ exit
  2. logout
  3. [linux@slave054 ~]$ su - mysqladmin
  4. Password:
  5. Last login: Mon Nov :: CST on pts/
  6. slave054:mysqladmin:/usr/local/mysql:>

  注意:

    如果发生如下错误,对应修改即可:

  1. Error1: File '/usr/local/mysql/arch/mysql-bin.index' not found (Errcode: )
  2. test2.localdomain:mysqladmin:/usr/local/mysql/arch:>chmod *
  3. test2.localdomain:mysqladmin:/usr/local/mysql/arch:>chown R mysqladmin:dba *

十二、远程连接问题

见图:

  先登录root用户关闭防火墙

  1. slave054:mysqladmin:/usr/local/mysql:>su - root
  2. Password:
  3. Last login: Mon Nov :: CST on pts/
  4. [root@slave054 ~]# systemctl start firewalld
  5. [root@slave054 ~]# systemctl stop firewalld
  6. [root@slave054 ~]# systemctl status firewalld
  7. firewalld.service - firewalld - dynamic firewall daemon
  8. Loaded: loaded (/usr/lib/systemd/system/firewalld.service; enabled; vendor preset: enabled)
  9. Active: inactive (dead) since Mon -- :: CST; 8s ago
  10. Docs: man:firewalld()
  11. Process: ExecStart=/usr/sbin/firewalld --nofork --nopid $FIREWALLD_ARGS (code=exited, status=/SUCCESS)
  12. Main PID: (code=exited, status=/SUCCESS)
  13.  
  14. Nov :: slave054 systemd[]: Starting firewalld - dynamic firewall .....
  15. Nov :: slave054 systemd[]: Started firewalld - dynamic firewall d...n.
  16. Nov :: slave054 systemd[]: Stopping firewalld - dynamic firewall .....
  17. Nov :: slave054 systemd[]: Stopped firewalld - dynamic firewall d...n.
  18. Hint: Some lines were ellipsized, use -l to show in full.
  19. [root@slave054 ~]# systemctl disable firewalld
  20. Removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service.
  21. Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
  22. [root@slave054 ~]# systemctl enable firewalld
  23. Created symlink from /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service to /usr/lib/systemd/system/firewalld.service.
  24. Created symlink from /etc/systemd/system/multi-user.target.wants/firewalld.service to /usr/lib/systemd/system/firewalld.service.
  25. [root@slave054 ~]#

  再次测试连接成功,见图:

数据仓库006 - MySQL 5.6.x - Linux最佳生产环境离线部署的更多相关文章

  1. Linux上生产环境源码方式安装配置postgresql12

    1.Linux上源码方式安装postgresql12 01.准备操作系统环境 echo "192.168.1.61 tsepg61" >> /etc/hosts mou ...

  2. Linux企业生产环境用户权限集中管理项目方案案例

    企业生产环境用户权限集中管理项目方案案例: 1 问题现状 当前我们公司里服务器上百台,各个服务器上的管理人员很多(开发+运维+架构+DBA+产品+市场),在大家登录使用Linux服务器时,不同职能的员 ...

  3. Linux suse x86_64 环境上部署Hadoop启动失败原因分析

    一.问题症状: 在安装hadoop的时候报类似如下的错误: # A fatal error has beendetected by the Java Runtime Environment: # #  ...

  4. 保障MySQL安全的14个最佳方法

    MySQL数据库一贯以高性能.高可性和易用性著称,它已经成为世界上最流行的开源数据库.大量的个人.WEB开发者.大型公司等都在其网站.关键系统.软件包中广泛使用MySQL数据库.        通常, ...

  5. 将win平台上的mysql数据复制到linux上报错Can't write; duplicate key in table

    将win平台上的mysql数据复制到linux上报错Can't write; duplicate key in table xxx 新年新气象,果然在新年的第一天就遇到了一个大坑,项目在win上跑的没 ...

  6. 尚观Linux最佳入门高清视频教程033/133/253

    [高清]Linux 最佳入门ULE112- RHCE033部分高清视频教程[尚观原创] 视频简介:高清RHCE033部分是RHCE考试中的基础部分,同时也是我们Linux入门的必 备学习资料.想学好L ...

  7. MYSQL数据库常用的LINUX命令

    此为我工作中常用MYSQL数据库命令 LINUX系统中启动 / 重启MYSQL服务:service mysql start  /  service mysql restart(重启服务) LINUX系 ...

  8. Linux搭建Java环境(JDK+Tomcat+MySQL)

    目录 一.项目环境: 二.安装JDK1.8 三.安装Tomcat8.5 四.安装MySQL数据库 五.配置JAVA项目 一.项目环境: 开发环境 生产环境 测试环境 硬件环境: web服务器:cpu: ...

  9. MySQL连接处理方式及最佳并发连接数设置

    MySQL连接处理方式及最佳并发连接数设置 mysql是单进程,多线程的架构,通过创建多个线程来服务不同的用户连接,通常情况下,随着用户连接数的增加,mysql内部用于处理用户连接的线程也会同步的增长 ...

随机推荐

  1. MySQL多表查询综合练习答案

    目录 一.综合练习 1.1 init.sql文件内容 1.2 从init.sql文件中导入数据 1.3 基础练习 1.4 进阶练习 二.基础练习答案 三.进阶练习答案 一.综合练习 1.1 init. ...

  2. iOS: 线程中那些常见的锁

    一.介绍 在多线程开发中,锁的使用基本必不可少,主要是为了解决资源共享时出现争夺而导致数据不一致的问题,也就是线程安全问题.锁的种类很多,在实际开发中,需要根据情况选择性的选取使用,毕竟使用锁也是消耗 ...

  3. URLDecoder异常Illegal hex characters in escape (%)

    URLDecoder对参数进行解码时候,代码如: URLDecoder.decode(param,"utf-8"); 有时候会出现类似如下的错误: URLDecoder异常Ille ...

  4. java获取下一天的日期

    我们来看看Java怎么获取下一天的日期: 哈哈哈,开玩笑啦,这个只是个段子. "哪怕悲伤有1000种,快乐有1种就够了."

  5. ASP.NET Core使用Nacos作为配置中心的多环境问题

    前言 双11那天离职后,这段时间都待在家里,看看书,写写代码,逛逛招聘网站 周一去Gworld面试的时候,有听到面试官说他们用到了配置中心Apollo,聊下来,听他的意思,大概是处理了多环境这个比较方 ...

  6. 【maven】【idea】使用idea的maven进行deploy操作失败,报错:Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (default-deploy) on project proengine-db-sdk: Failed to deploy artifacts 错误码401

    使用idea的maven进行deploy操作失败,报错: Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:- f ...

  7. C#上手练习6(方法语句1)

    方法是将完成同一功能的内容放到一起,方便书写和调用的一种方式,也体现了面向对象语言中封装的特性. 定义方法的语法形式如下. 访问修饰符    修饰符    返回值类型    方法名(参数列表){    ...

  8. Web前端基础(5):CSS(二)

    1. 盒模型 在CSS中,"box model"这一术语是用来设计和布局时使用,然后在网页中基本上都会显示一些方方正正的盒子.我们称为这种盒子叫盒模型. 盒模型有两种:标准模型和I ...

  9. Python 爬取大众点评 50 页数据,最好吃的成都火锅竟是它!

    前言 文的文字及图片来源于网络,仅供学习.交流使用,不具有任何商业用途,版权归原作者所有,如有问题请及时联系我们以作处理. 作者: 胡萝卜酱 PS:如有需要Python学习资料的小伙伴可以加点击下方链 ...

  10. Linux下用户管理:创建用户指定密码

    首先我们来了解下Linux下用户管理的概念: 如上图所示,左边的一列表示用户名,中间的一列表示用户组,最右边的一列表示的是家目录.用户名我们这里处于简单就,添加了root,xm,xh三个用户.用户组和 ...