programing

MariaDB --init-BASH 스크립트에서 mysql을 호출할 때 명령어

copyandpastes 2023. 1. 22. 22:56
반응형

MariaDB --init-BASH 스크립트에서 mysql을 호출할 때 명령어

저는 Stack Overflow의 신규 사용자이므로 사이트 에티켓 위반에 대해 미리 사과드립니다.

MariaDB 모니터를 호출하는 명령을 생성하는 BASH 스크립트를 작성하려고 합니다.mysql.나는 이것을 원해요.mysql를 포함하도록 명령어를 지정합니다.--init-command선택.나는 그 것을 원한다.--init-commandoption: 사용자 변수 목록을 Configuration파일로 지정된 값으로 설정합니다.

이 스크립트는 내 목적에 맞는 것처럼 보이는 문자열을 구축하지만 호출할 때mysql에러가 생성됩니다.스크립트에서 생성된 문자열을 출력하면 작성하려고 했던 문자열과 동일한 문자열이 나타납니다.

다음 코드 예시로 요약해 보겠습니다.

#!/bin/sh
declare foo="name"
declare bar="value"
declare invoke="mysql -p -D information_schema"
declare opts=" --init-command='SET @$foo:=\"$bar\"'"
invoke+=$opts
echo $invoke
$invoke

이 스크립트를 실행하면 다음과 같은 결과가 나타납니다.

$ example.sh
mysql -p -D information_schema --init-command='SET @name:="value"'
Enter password:
ERROR 1044 (42000): Access denied for user 'Bill'@'%' to database '@name:="value"''

이 에러 메세지는 전혀 의미가 없는 것 같습니다.

단, 생성된 명령어를 복사하여 명령어프롬프트에 붙여넣으면 다음과 같이 패스워드가 요구되어 정상적으로 진행됩니다.

$ mysql -p -D information_schema --init-command='SET @name:="value"'
Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 171
Server version: 10.3.11-MariaDB Source distribution

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [information_schema]> SELECT @name;
+-------+
| @name |
+-------+
| value |
+-------+
1 row in set (0.000 sec)

MariaDB [information_schema]>

그 것을 실증할 수 있는 그대로입니다.SET에서 지휘하다--init-command옵션이 MariaDB 모니터에 정상적으로 전달되어 실행되었습니다.

Linux 문제인지 BASH 문제인지 MariaDB 문제인지 알 수 없습니다.그래서 저는 답을 찾기 위해 많은 시간을 보냈지만, 문제의 원인이 어디에 있는지, 그래서 제 연구를 어디에 집중해야 하는지 정말 모르겠습니다.

주의:이 문제를 재현하려고 하면 누구나 해당 데이터베이스를 사용할 수 있을 것으로 예상되기 때문에 예에서는 information_schema 데이터베이스만 사용했습니다.

잘 부탁드립니다.

일부 옵션:

옵션 1:

#!/bin/sh

# USING BASH
# FILE: bash_mariadb.sh

foo="\`name\`"
bar="value"

mysql -p -D information_schema --init-command="SET @$foo:='$bar';"

옵션 2:

#!/bin/sh

# USING BASH
# FILE: bash_mariadb.sh

foo="\`name\`"
bar="value"

opts=(--init-command="SET @$foo:='$bar';")
invoke=(mysql -p -D information_schema "$opts")
"${invoke[@]}"

옵션 3:

#!/bin/sh

# USING BASH
# FILE: bash_mariadb.sh

foo="\`name\`"
bar="value"

#define
invoke() {
  opts=(--init-command="SET @$foo:='$bar'")

  if [[ -v opts ]]; then
    invoke=(mysql -p -D information_schema "$opts")
  else
    invoke=(mysql -p -D information_schema)
  fi

  "${invoke[@]}"
}

#call
invoke

옵션 4: 위험, 안전상의 이유로 권장되지 않습니다.

#!/bin/sh

# USING BASH
# FILE: bash_mariadb.sh

foo="\`name\`"
bar="value"

invoke="mysql -p -D information_schema"
opts=" --init-command='SET @$foo:=\"$bar\"'"
invoke+=$opts
eval $invoke

모든 경우:

$ ./bash_mariadb.sh
Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 1
Server version: 10.3.11-MariaDB Source distribution

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [information_schema]> SELECT @`name`;
+---------+
| @`name` |
+---------+
| value   |
+---------+
1 row in set (0.000 sec)

SO에 오신 것을 환영합니다.

스크립트에서 사용할 암호를 지정해야 합니다.

옵션-p스크립트에서는 동작하지 않는 패스워드를 인터랙티브하게 입력하도록 강제합니다.

대신 을 사용하는 경우-ppassword(패스워드 옆에 공백 없이 'p'를 쓰는 것을 권장합니다)접속은 정상적으로 동작합니다.

따라서 행을 수정하기만 하면 됩니다.

declare invoke="mysql -ppassword -D information_schema"

(물론 패스워드를 쓴 곳에 패스워드를 기입하는 것을 잊지 말아 주세요).

언급URL : https://stackoverflow.com/questions/58229196/mariadb-init-command-when-invoking-mysql-from-a-bash-script

반응형