Optional software
Magento optional software
We strongly recommend you install NTP because otherwise, cron-related tasks might not 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 Magento.
Installing and Configuring Network Time Protocol (NTP)
NTP enables servers to synchronize their system clocks using globally available pool servers. Magento recommends you use NTP servers you trust, whether they are dedicated hardware solutions your internal network or external, public servers.
If you are deploying Magento 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.
See one of the following sections:
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:
-
Enter the following command to find the appropriate NTP software:
yum search ntp
-
Select a package to install. For example,
ntp.x86_64
. -
Install the package.
yum -y install ntp.x86_64
-
Enter the following command so that NTP starts when the server starts.
chkconfig ntpd on
-
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 help page. If you have a private NTP server that is available to all hosts in your Magento deployment, you can use that server instead.
-
Open
/etc/ntp.conf
in a text editor. -
Look for lines similar to the following:
server 0.centos.pool.ntp.org server 1.centos.pool.ntp.org server 2.centos.pool.ntp.org
-
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.
-
An example of using three United States-based NTP servers follows:
server 0.us.pool.ntp.org server 1.us.pool.ntp.org server 2.us.pool.ntp.org
-
Save your changes to
/etc/ntp.conf
and exit the text editor. -
Restart the service.
Ubuntu:
service ntp restart
CentOS:
service ntpd restart
-
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 host name]
command. If it fails, search for the error it returns.If all else fails, try rebooting the server.
Create phpinfo.php
phpinfo.php
displays a large amount of information about PHP and its extensions.
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:
- Start the web server if necessary.
-
Make sure your firewall allows traffic on port 80.
Install phpmyadmin
phpmyadmin
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.
Use phpmyadmin in a development system only. It can be a security issue in production.
Install phpmyadmin on Ubuntu
To install phpmyadmin on Ubuntu:
-
Use the following command:
apt-get install phpmyadmin
-
Follow the prompts on your screen to complete the installation.
-
To use phpmyadmin, enter the following URL in your browser’s address or location field:
http://<web server host or IP>/phpmyadmin
-
When prompted, log in using your MySQL database
root
or administrative user’s user name and password.
Install phpmyadmin on CentOS
To install phpmyadmin on CentOS:
-
Download the epel RPM for the version of CentOS you’re using. A sample follows.
cd /tmp wget http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm rpm -ivh epel-release-6-8.noarch.rpm
-
Install
phpmyadmin
as follows:yum -y install phpmyadmin
-
Authorize access to phpmyadmin from your machine’s IP address.
Open the following file for editing:
vim /etc/httpd/conf.d/phpMyAdmin.conf
-
Replace the following IP address with your IP address
Require ip localhost
For example,
Require ip 192.51.100.101
-
Replace the following IP with your IP address:
Allow from localhost
For example,
Allow from 192.51.100.101
-
Save your changes to
/etc/httpd/conf.d/phpMyAdmin.conf
and exit the text editor. -
Restart Apache.
service httpd Restart
-
To use phpmyadmin, enter the following command in your browser’s address or location field:
http://<web server host or IP>/phpmyadmin
-
When prompted, log in using your MySQL database
root
or administrative user’s user name and password.