[PR]
×
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
# timedatectl Local time: Thu 2020-07-09 01:49:06 UTC Universal time: Thu 2020-07-09 01:49:06 UTC RTC time: Thu 2020-07-09 01:49:06 Time zone: Etc/UTC (UTC, +0000) System clock synchronized: yes NTP service: active RTC in local TZ: no |
# timedatectl Local time: Thu 2020-07-09 10:49:28 JST Universal time: Thu 2020-07-09 01:49:28 UTC RTC time: Thu 2020-07-09 01:49:28 Time zone: Asia/Tokyo (JST, +0900) System clock synchronized: yes NTP service: active RTC in local TZ: no |
以下、リプライメッセージに返答していく Enter current password for root (enter for none): ※ubuntuのrootパスワードを入力 →(ubuntuのrootパスワードを入力) Change the root password? [Y/n] ※rootのパスワードを変更するか? →(Y/nを返答) ※"y"の場合は変更、"n"の場合はそのまま ※以下、"n"の場合 Remove anonymous users? [Y/n] ※匿名ユーザを削除するか? →"y" Disallow root login remotely? [Y/n] ※リモートからのrootログインを禁止するか? →"y" Remove test database and access to it? [Y/n] テスト用DBを削除するか? →"y" Reload privilege tables now? [Y/n] ※権限テーブルの再読み込みを行うか? →"y" Thanks for using MariaDB!で終了 |
#!/bin/sh clear read -p "This script installs Zoneminder 1.34.x on Ubuntu 20.04 or 18.04 with LAMP (MySQL or Mariadb) installed... Press Enter to continue or Ctrl + c to quit" nothing clear read -p "You must be logged in as root using sudo su If you are installing on MySQL 8 perform the additional steps before continuing! Press Enter to continue or Ctrl + c to quit" nothing clear read -p "Next we will add the PPA repository, install and configure the system to run Zoneminder. Press enter to continue" nothing apt install -y software-properties-common clear add-apt-repository ppa:iconnor/zoneminder-1.34 clear apt install -y zoneminder systemctl enable zoneminder service zoneminder start adduser www-data video a2enconf zoneminder a2enmod rewrite a2enmod headers a2enmod expires service apache2 reload clear read -p "Install complete. Open Zoneminder/Options and set the timezine. Press enter to continue" nothing clear |