单选题MySQL is installed on a Linux server and has the following configuration: What is the purpose of changing ownership of datadir to the ‘mysql’ user?()A MySQL requires correct file ownership while remaining secureB MySQL needs to be run as the root use

题目
单选题
MySQL is installed on a Linux server and has the following configuration: What is the purpose of changing ownership of datadir to the ‘mysql’ user?()
A

MySQL requires correct file ownership while remaining secure

B

MySQL needs to be run as the root user, but file cannot be owned by it

C

MySQL cannot be run as the root user

参考答案和解析
正确答案: C
解析: 暂无解析
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

MySQL is installed on a Linux server and has the following configuration:What is the purpose of changing ownership of datadir to the ‘mysql’ user?()

A.MySQL requires correct file ownership while remaining secure

B.MySQL needs to be run as the root user, but file cannot be owned by it

C.MySQL cannot be run as the root user


参考答案:A

第2题:

The following commands are available in the Linux binary distributions of Mysql: Mysqld Mysqld_safe Mysql.server What is the correct description of each of these commands?()

A.A

B.B

C.C

D.D


参考答案:A

第3题:

修改MySQL用户root的密码的指令是?()

A.mysqladmin-urootpasswordtest

B.mysql-urootpasswordtest

C.mysql-uroot-ptest

D.mysql-uroot-passwordtest


参考答案:A

第4题:

Mysqldump was used to create a single schema backup; Shell> mysqldump –u root –p sakila > sakila2013.sql Which two commands will restore the sakila database without interfering with other running database?()

  • A、Mysql> USE sakila; LOAD DATA INFILE 'sakila2013.sql';
  • B、Shell> mysql –u root –p sakila sakila2013.sql
  • C、Shell> mysql import –u root –p sakila sakila2013.sql
  • D、Shell> mysql  –u root -p  –e 'use sakila; source sakila2013.sql'
  • E、Shell> mysql  –u root  –p  –silent < sakila2013.sql

正确答案:B,D

第5题:

You execute the following statement in a Microsoft Windows environment. There are no conflicts in the path name definitions.C: \> mysqld – install Mysql56 – defaults – file = C :\my –opts.cnf What is the expected outcome?()

A.Mysql is installed as the Windows service name Mysql56, and uses c: \my-opts.cnf as the configuration file

B.An error message is issued because – install is not a valid option for mysqld

C.A running Mysql 5.6 installation has its runtime configuration updated with the server variables set in c: \my-opts.cnf

D.Mysqld acts as an MSI installer and installs the Mysql 5.6 version, with the c: \my-opts.cnf configuration file


参考答案:A

第6题:

You have forgotten the root user account password. You decide to reset the password and execute the following:Shell> /etc/init.d/mysql stopShell> /etc/init.d/mysql start – skip-grant tablesWhich additional argument makes this operation safer?()

A.–skip-networking, to prohibit access from remote locations

B.–reset-grant-tables, to start the server with only the mysql database accessible

C.–read-only,to set all data to read-only except for super users

D.–old-passwords, to start Mysql to use the old password format while running without the grant tables


参考答案:A

第7题:

Consider the query:Mysql> SET @run = 15;Mysql> EXPLAIN SELECT objective, stage, COUNT (stage)FROM iteminformationWHERE run=@run AND objective=’7.1’GROUP BY objective,stageORDER BY stage;The iteminformation table has the following indexes;Mysql> SHOW INDEXES FROM iteminformation:This query is run several times in an application with different values in the WHERE clause in a growing data set.What is the primary improvement that can be made for this scenario?()

A.Do not pass a user variable in the WHERE clause because it limits the ability of the optimizer to use indexes

B.Add an index on the objective column so that is can be used in both the WHERE and GROUP BY operations

C.Drop the run_2 index because it has caused a conflict in the choice of key for this query

D.Execute the run_2 index because it has caused a conflict in the choice of key for this query

E.Add a composite index on (run,objective,stage) to allow the query to fully utilize an index


参考答案:E

第8题:

While reviewing the MySQL error log, you see occasions where MySQL has exceeded the number of file handles allowed to it by the operating system.Which method will reduce the number of file handles in use?()

A.Activating the MySQL Enterprise thread pool plugin

B.Relocating your data and log files to separate storage devices

C.Disconnecting idle localhost client sessions

D.Implementing storage engine data compression options


参考答案:C

第9题:

Mysqldump was used to create a single schema backup; Shell> mysqldump –u root –p sakila > sakila2013.sqlWhich two commands will restore the sakila database without interfering with other running database?()

A.Mysql> USE sakila; LOAD DATA INFILE ‘sakila2013.sql‘;

B.Shell> mysql –u root –p sakila sakila2013.sql

C.Shell> mysql import –u root –p sakila sakila2013.sql

D.Shell> mysql –u root -p –e ‘use sakila; source sakila2013.sql‘

E.Shell> mysql –u root –p –silent < sakila2013.sql


参考答案:B, D

第10题:

You adjust a default configuration to the following /etc/my.cnf on a Linux installation:[mysqld] Loq-bin Binrylog_format=ROW You do not notice the spelling error in binrylog_format and restart your production server. How does the MySQL server behave with incorrectly spelled options?()

  • A、Mysqld uses internal configuration versioning and reverts to the previous configuration
  • B、When using mysql_config_editor for configuration adjustments, it detects incorrect syntax and typing mistakes
  • C、The mysqld_safe script skips the unknown variable and starts using the remaining configuration changes
  • D、Mysqld prints to the error log about an unknown variable, and then exits

正确答案:D

更多相关问题