Optional software

We strongly recommend you install NTP to ensure that cron-related tasks perform properly. (Server dates could be in the past or future, for example.)

The other optional utilities discussed in this topic might assist you with your installation; however, they are not required to install or use Adobe Commerce.

Installing and Configuring Network Time Protocol (NTP)

NTP enables servers to synchronize their system clocks using globally available pool servers. We recommend you use NTP servers you trust, whether they are dedicated hardware solutions your internal network or external, public servers.

If you are deploying Adobe Commerce on multiple hosts, NTP is a simple way to guarantee their clocks are all synchronized, no matter what time zone the servers are in. Also, cron-related tasks (such as indexing and transactional e-mails) depend on the server clock being accurate.

Install and configure NTP on Ubuntu

Enter the following command to install NTP:

apt-get install ntp

Continue with Use NTP pool servers.

Install and configure NTP on CentOS

To install and configure NTP:

  1. Enter the following command to find the appropriate NTP software:

    code language-bash
    yum search ntp
    
  2. Select a package to install. For example, ntp.x86_64.

  3. Install the package.

    code language-bash
    yum -y install ntp.x86_64
    
  4. Enter the following command so that NTP starts when the server starts.

    code language-bash
    chkconfig ntpd on
    
  5. Continue with the next section.

Use NTP pool servers

Selecting pool servers is up to you. If you use NTP pool servers, ntp.org recommends you use pool servers that are close to your servers’ time zone as discussed on the NTP pool project page. If you have a private NTP server that is available to all hosts in your deployment, you can use that server instead.

  1. Open /etc/ntp.conf in a text editor.

  2. Look for lines similar to the following:

    code language-conf
    server 0.centos.pool.ntp.org
    server 1.centos.pool.ntp.org
    server 2.centos.pool.ntp.org
    
  3. Replace those lines or add additional lines that specify your NTP pool server or other NTP servers. It’s a good idea to specify more than one.

  4. An example of using three United States-based NTP servers follows:

    code language-conf
    server 0.us.pool.ntp.org
    server 1.us.pool.ntp.org
    server 2.us.pool.ntp.org
    
  5. Save your changes to /etc/ntp.conf and exit the text editor.

  6. Restart the service.

    • Ubuntu: service ntp restart

    • CentOS: service ntpd restart

  7. Enter date to check the server’s date.

    If the date is incorrect, make sure the NTP client port (typically, UDP 123) is open in your firewall.

    Try the ntpdate _[pool server hostname]_ command. If it fails, search for the error it returns.

    If all else fails, try rebooting the server.

Create phpinfo.php

The phpinfo.php file displays a large amount of information about PHP and its extensions.

NOTE
Use phpinfo.php in a development system only. It can be a security issue in production.

Add the following code anywhere in your web server’s docroot:

<?php
// Show all information, defaults to INFO_ALL
phpinfo();

For more information, see the phpinfo manual page.

To view the results, enter the following URL in your browser’s location or address field:

http://<web server host or IP>/phpinfo.php

If a 404 (Not Found) error displays, check the following:

phpMyAdmin

The phpMyAdmin application is an easy to use, free database administration utility. You can use it to check and manipulate the contents of your database. You must log in to phpMyAdmin as the MySQL database administrative user.

For more information about phpMyAdmin, see the phpMyAdmin home page.

For more detailed information about installation, see the phpMyAdmin installation documentation.

NOTE
Use phpMyAdmin in a development system only. It can be a security issue in production.
  1. To use phpMyAdmin, enter the following command in your browser’s address or location field:

    code language-http
    http://<web server host or IP>/phpmyadmin
    
  2. When prompted, log in using your MySQL database root or administrative user’s username and password.

recommendation-more-help
0f8e7db5-0e9c-4002-a5b8-a0088077d995