মারিয়্যাডবি ইনস্টল করতে কীভাবে প্রত্যাশা স্ক্রিপ্ট লিখবেন?


11

পরিবেশ: Centos7 + মারিয়াডবি 5.5.64।
আমাকে কখন চালাবেন তা স্ক্রিনে ইনস্টলেশন তথ্যটি দেখান mysql_secure_installation

# mysql_secure_installation

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!

In order to log into MariaDB to secure it, we'll need the current
password for the root user.  If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none): 
OK, successfully used password, moving on...

Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.

Set root password? [Y/n] y
New password: 
Re-enter new password: 
Password updated successfully!
Reloading privilege tables..
 ... Success!


By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] y
 ... Success!

Normally, root should only be allowed to connect from 'localhost'.  This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] y
 ... Success!

By default, MariaDB comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] y
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] y
 ... Success!

Cleaning up...

All done!  If you've completed all of the above steps, your MariaDB
installation should now be secure.

Thanks for using MariaDB!

মারিয়্যাডবি ইনস্টল করতে আমি একটি অটোমেশন প্রত্যাশা স্ক্রিপ্ট লিখি।

  vim secure.exp
  set timeout 60
  spawn mysql_secure_installation
  expect {
      "Enter current password for root (enter for none): " {send "\r";exp_continue}
      "Set root password? [Y/n] " {send "y\r";exp_continue}
      "New password:" {send "123456\r";exp_continue}
      "Re-enter new password:" {send "123456\r";exp_continue}
      "Remove anonymous users? [Y/n]" {send "y\r";exp_continue}
      "Disallow root login remotely? [Y/n]" {send "y\r";exp_continue}
      "Remove test database and access to it? [Y/n]" {send "y\r";exp_continue}
      "Reload privilege tables now? [Y/n]" {send "y\r";exp_continue}
  }

কার্যকর করার জন্য /usr/bin/expect secure.exp, আমি ত্রুটিটি দেখতে পেয়েছি:

spawn mysql_secure_installation
invalid command name "Y/n"
    while executing
"Y/n"
    invoked from within
"expect {
          "Enter current password for root (enter for none): " {send "\r";exp_continue}
          "Set root password? [Y/n] " {send "y\r";exp..."
    (file "secure.exp" line 3)

এটি নীচের মত লিখতে কোন লাভ হয় না:

  set timeout 60
  spawn mysql_secure_installation
  expect {
      "Enter current password for root (enter for none): " {send "\r";exp_continue}
      "Set root password? \\[Y/n] " {send "y\r";exp_continue}
      "New password:" {send "123456\r";exp_continue}
      "Re-enter new password:" {send "123456\r";exp_continue}
      "Remove anonymous users? \\[Y/n]" {send "y\r";exp_continue}
      "Disallow root login remotely? \\[Y/n]" {send "y\r";exp_continue}
      "Remove test database and access to it? \\[Y/n]" {send "y\r";exp_continue}
      "Reload privilege tables now? \\[Y/n]" {send "y\r";exp_continue}
  }

একই ত্রুটি:

invalid command name "Y/n"
    while executing
"Y/n"
    invoked from within
"expect {
      "Enter current password for root (enter for none): " {send "\r";exp_continue}
      "Set root password? \\[Y/n] " {send "y\r";exp_conti..."
    (file "secure.exp" line 3)

তাহলে আমার এক্সপ স্ক্রিপ্ট কীভাবে ঠিক করবেন?


প্রত্যাশা একটি টিসিএল এক্সটেনশন is টিসিএল-তে [ ... ]হ'ল কমান্ড সাবস্টিটিউশন যা শেলের মতো $( ... )। তাই "Set root password? [Y/n] "হিসাবে লেখা উচিত "Set root password? \\[Y/n] "
পাইনেজজ

উত্তর:


5

এই স্ক্রিপ্টগুলি alচ্ছিক আউটপুট পাওয়ার জন্য অপেক্ষা করে ( timeout -1যার অর্থ "কোনও টাইমআউট নেই") এবং তারা বিভিন্ন প্রতিক্রিয়া আলাদাভাবে বলতে পারে, যেমন এটির প্রয়োজন হয় yum installএবং mysql_secure_installation। সঙ্গে #!/bin/expect -fহিসাবে কুঁড়েঘর, স্ক্রিপ্ট, মৃত্যুদন্ড কার্যকর করা যেতে পারে তারা সেট হয়েছিল chmod +x

ক) শুরু করার জন্য, mariadb_yum.exp(প্রয়োজন suবা sudo):

#!/bin/expect -f
set timeout 30
if {[llength $argv] == 0} {
    send_user "Usage: mariadb_yum.exp \[linux sudo password\]\n"
    exit 1
}
set USERNAME "[exec whoami]"
set PASSWORD [lindex $argv 0];

# optionally, redirect output to log file (silent install)
# log_user 0
# log_file -a "/home/$USERNAME/mariadb_install.log"

spawn sudo yum -y install MariaDB-server
set yum_spawn_id $spawn_id

# On GCE it will never ask for a sudo password:
expect -ex "\[sudo\] password for $USERNAME: " {
   exp_send "$PASSWORD\r"
}

expect {
    # when the package was already installed
    -ex "Nothing to do" {
        send_user "package was already installed\n"
    }
    # when the package had been installed
    -ex "Complete!" {
        send_user "package had been installed\n"
    }
}

expect eof
close $yum_spawn_id
exit 0

খ) এবং তারপরে mariadb_sec.exp(প্রয়োজন হয় না sudo):

#!/bin/expect -f
set timeout 1
if {[llength $argv] == 0} {
    send_user "Usage: mariadb_sec.exp \[mysql root password\]\n"
    exit 1
}
set PASSWORD [lindex $argv 0];

spawn mysql_secure_installation
set mysql_spawn_id $spawn_id

# optionally, redirect output to log file (silent install)
# log_user 0
# log_file -a "/home/[exec whoami]/mariadb_install.log"

# when there is no password set, this probably should be "\r"
expect -ex "Enter current password for root (enter for none): "
exp_send "$PASSWORD\r"

expect {
    # await an eventual error message
    -ex "ERROR 1045" {
        send_user "\nMariaDB > An invalid root password had been provided.\n"
        close $mysql_spawn_id
        exit 1
    }
    # when there is a root password set
    -ex "Change the root password? \[Y/n\] " {
        exp_send "n\r"
    }
    # when there is no root password set (could not test this branch).
    -ex "Set root password? \[Y/n\] " {
        exp_send "Y\r"
        expect -ex "New password: "
        exp_send "$PASSWORD\r"
        expect -ex "Re-enter new password: "
        exp_send "$PASSWORD\r"
    }
}
expect -ex "Remove anonymous users? \[Y/n\] "
exp_send "Y\r"
expect -ex "Disallow root login remotely? \[Y/n\] "
exp_send "Y\r"
expect -ex "Remove test database and access to it? \[Y/n\] "
exp_send "Y\r"
expect -ex "Reload privilege tables now? \[Y/n\] "
exp_send "Y\r"

expect eof
close $mysql_spawn_id
exit 0

ডিবাগিংয়ের উদ্দেশ্যে - বা উত্তরটি বৈধ করার জন্য, expectলগ-লেভেল দিয়ে চালানো যায় strace 4। এটি সম্ভবত উত্স হিসাবে যেমনটি expectস্ক্রিপ্টগুলি লেখার ক্ষেত্রে আসে তেমন নামকরা , যেমন এটি কী চলছে এবং সর্বাপেক্ষা গুরুত্বপূর্ণভাবে, জিনিসগুলি ক্রমে কী ঘটে তা প্রদর্শন করে:

expect -c "strace 4" ./mariadb_yum.exp [linux sudo password]
expect -c "strace 4" ./mariadb_sec.exp [mysql root password]

set exp_internal 1রেজেক্স-মিলের জন্য আউটপুট পেতে নির্দেশ ব্যবহার করা যেতে পারে।


বিভ্রান্তির একটি সম্ভাব্য উত্স হতে পারে, যেখানে কেউ প্রক্রিয়াগুলিকে উত্সাহ দেয় - যেমন বিভিন্ন হোস্টে একাধিক প্রক্রিয়া উত্সাহিত করতে পারে, যেমন। sshস্থানীয়ভাবে এবং তারপরে yumএবং mysql_secure_installationদূরবর্তীভাবে। যোগ করা হয়েছে $spawn_idস্ক্রিপ্টে; নীচের দিকে একটি closeকল রিডানড্যান্ট হতে পারে, যেহেতু এটি ইতিমধ্যে EOF(কেবল কীভাবে spawnএবং closeপ্রক্রিয়াগুলি দেখানোর জন্য ):

Thanks for using MariaDB!
 1  close $mysql_spawn_id
 1  exit 0
 2  rename _close.pre_expect close

উপসংহার: mariadb_sec.expস্ক্রিপ্ট সম্ভবত আরও উন্নত করা যেতে পারে, যেমন। যখন প্রথমে কোনও পাসওয়ার্ড না পাঠানো এবং কী ঘটেছিল তা দেখার পরে - তখন পাসওয়ার্ডটি প্রেরণ করা ERROR 1045(যখন কোনও পাসওয়ার্ড আগেই সেট করা ছিল)। এটি ধরে নেওয়া সাশ্রয় হতে পারে যে সার্ভারটি ইনস্টল হওয়ার পরে পাসওয়ার্ডটি সেট করতে হবে (কেবল yum reinstallএকই ফলাফল সরবরাহ করা ব্যতীত )। সমস্ত কেস পরীক্ষা করার জন্য খালি কোনও খালি সেন্টোস ধারক নেই। rootশেলটিতে চালনা না করা হলে উভয় প্রকারের পাসওয়ার্ডকে একটি স্ক্রিপ্টে পাস করার পরে এটি ইনস্টলেশন থেকে পরবর্তী ইনস্টলেশন পর্যন্ত স্বয়ংক্রিয়ভাবে প্রয়োজন।

সম্ভবত লক্ষনীয় যে জিসিইতে sudoপাসওয়ার্ড চাইবে না; পরিবেশের উপর ভিত্তি করে সেখানে সামান্য পার্থক্য রয়েছে, কারণ এই সেন্টোস কনটেইনার চিত্রগুলি আলাদাভাবে আচরণ করে। এই জাতীয় ক্ষেত্রে (যেহেতু কোনও suজায়গায় বা ধারক-চিত্র সনাক্তকরণ স্থানে নেই), mariadb_yum.expস্ক্রিপ্টটি কয়েক 30সেকেন্ডের জন্য আটকে যেতে পারে এবং তারপরে চালিয়ে যেতে পারে।


আমি যে expectসুনাম স্বনামধন্য উত্সগুলি উপস্থাপন করতে পারি তা হ'ল ম্যানুয়াল, ডন লিবিস @ এনআইএসটি দ্বারা রচিত ম্যানুয়াল এবং টিসিএল / টি কে ম্যানুয়াল expect, পাশাপাশি এটি উত্সফল প্রকল্পটি বলা যেতে পারে expect


2

কমান্ড প্রতিস্থাপনের জন্য বর্গাকার বন্ধনীগুলি কেবল ব্যবহৃত হয় না, তবে তারা গ্লোব নিদর্শনগুলির জন্যও বিশেষ

-exactবর্গাকার বন্ধনীগুলি উদ্ধৃতিতে বের হওয়ার সময় আপনি সুইচটি ব্যবহার করতে পারেন:

spawn mysql_secure_installation
expect {
    ...
    -exact "Set root password? \[Y/n\] " {send "y\r";exp_continue}
    ...
}

বা উদ্ধৃতিগুলির পরিবর্তে ব্রেস ব্যবহার করুন:

spawn mysql_secure_installation
expect {
    ...
    {Set root password? \[Y/n\] } {send "y\r";exp_continue}
    ...
}

FYI ব্যবহার করে আপনার জন্য প্রত্যাশা স্ক্রিপ্ট উত্পন্ন হতে পারে autoexpect:

autoexpect ./mysql_secure_installation

এটি script.expআপনার বর্তমান কার্যকারী ডিরেক্টরিতে ডাকা একটি প্রত্যাশা স্ক্রিপ্ট তৈরি করবে ।

আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.