AI 能否應對越來越多的勒索軟件攻擊?
勒索軟件攻擊呈上升趨勢,但人工智能能否幫助應對最新的計算機病毒?AI 是答案嗎?在這裡閱讀知道是 AI 布恩還是禍根
Booked Scheduler是一个开放源代码应用程序,旨在帮助用户计划进程和管理分配的资源。这是一个基于Web的应用程序,使用MariaDB运行,并用PHP编写。
也就是说,它非常强大-布局灵活,管理员面板用户友好。其他功能包括提醒,配额,预订等。
为了安装Booked Scheduler,您需要满足以下条件:
root
访问unzip
在开始安装之前,请运行以下命令来更新您现有的软件包:
apt-get update -y
这可能需要几分钟的时间,具体取决于您拥有的软件包数量。
更新过程完成后,我们将需要安装LEMP堆栈:
apt-get install nginx php-fpm -y
service nginx start
通过访问验证是否已安装Nginx http://YOUR_SERVER_IP
。它将显示一个标题为“欢迎使用Nginx”的页面。
通过运行以下命令来安装MariaDB:
apt-get install mariadb-server mariadb-client -y
通过执行以下命令来配置MariaDB。如果提示您输入密码,只需按ENTER:
mysql_secure_installation
Set root password? [Y/n] Y
New password: (enter a password)
Re-enter new password: (repeat the password)
一旦MariaDB更新密码,您将看到以下内容:
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.
对于其余的提示,请输入Y
和ENTER。
Remove anonymous users? [Y/n] Y
(...)
Disallow root login remotely? [Y/n] Y
(...)
Remove test database and access to it? [Y/n] Y
(...)
Reload privilege tables now? [Y/n] Y
成功完成后,您将看到以下输出:
Thanks for using MariaDB!
现在,我们需要为Booked Scheduler创建数据库和用户:
mysql -u root -p
出现提示时输入密码。
创建数据库和用户:
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>create database bookedscheduler;
MariaDB [(none)]>exit;
下载并安装预订的计划程序:
wget https://gigenet.dl.sourceforge.net/project/phpscheduleit/Booked/2.7/booked-2.7.2.zip
unzip booked-2.7.2.zip
mv booked /var/www/html/
配置nginx
和php-fpm
:
nano /etc/php/7.2/fpm/php.ini
找到以下行,删除分号并替换0
为1
:
cgi.fix_pathinfo=1
现在,重新启动php-fpm
:
service php7.2-fpm restart
现在,我们将编辑nginx
配置,以将PHP请求传递给php-fpm
:
nano /etc/nginx/sites-available/default
在第一个程序server
段的末尾粘贴以下内容:
location ~ \.php$ {
fastcgi_pass unix:/run/php/php7.2-fpm.sock;
}
location ~ /\.ht {
deny all;
}
index
还要修改参数:
index index.html index.htm index.php;
最后,修改root
参数:
root /var/www/html/booked;
配置预订的计划程序:
cd /var/www/html/booked
nano config/config.dist.php
更改以下参数:
$conf['settings']['default.timezone'] = 'America/Toronto'; // your timezone
$conf['settings']['admin.email'] = '[email protected]'; // email address of admin user
$conf['settings']['admin.email.name'] = 'John Doe';
$conf['settings']['script.url'] = 'http://YOUR_DOMAIN.com/Web'; // your domain
$conf['settings']['database']['type'] = 'mysql';
$conf['settings']['database']['user'] = 'root';
$conf['settings']['database']['password'] = '(CHANGE_ME)'; // your database password
$conf['settings']['database']['hostspec'] = '127.0.0.1'; // your IP
$conf['settings']['database']['name'] = 'bookedscheduler';
注意:确保(CHANGE_ME)
用您的数据库密码替换。
保存并使用CTRL+ 退出O,然后按ENTER。
重命名config.dist.php
为config.php
:
mv config.dist.php config.php
现在,我们将填充数据库:
mysql -u root -p bookedscheduler < database_schema/create-schema.sql
mysql -u root -p bookedscheduler < database_schema/create-data.sql
最后,导航到服务器的IP并注册管理员帐户。
您已成功安装Booked Scheduler。
勒索軟件攻擊呈上升趨勢,但人工智能能否幫助應對最新的計算機病毒?AI 是答案嗎?在這裡閱讀知道是 AI 布恩還是禍根
ReactOS,一個開源和免費的操作系統,這裡有最新版本。它能否滿足現代 Windows 用戶的需求並打倒微軟?讓我們更多地了解這種老式但更新的操作系統體驗。
Whatsapp 終於為 Mac 和 Windows 用戶推出了桌面應用程序。現在您可以輕鬆地從 Windows 或 Mac 訪問 Whatsapp。適用於 Windows 8+ 和 Mac OS 10.9+
閱讀本文以了解人工智能如何在小型公司中變得流行,以及它如何增加使它們成長並為競爭對手提供優勢的可能性。
最近,Apple 發布了 macOS Catalina 10.15.4 補充更新以修復問題,但似乎該更新引起了更多問題,導致 mac 機器變磚。閱讀這篇文章以了解更多信息
大數據的13個商業數據提取工具
我們的計算機以稱為日誌文件系統的有組織的方式存儲所有數據。這是一種有效的方法,可以讓計算機在您點擊搜索時立即搜索和顯示文件。 https://wethegeek.com/?p=94116&preview=true
隨著科學的快速發展,接管了我們的大量工作,我們陷入無法解釋的奇點的風險也在增加。閱讀,奇點對我們意味著什麼。
洞察 26 種大數據分析技術:第 1 部分
過去幾十年,醫療保健領域的人工智能取得了巨大飛躍。因此,醫療保健中人工智能的未來仍在日益增長。