1560836064
In this guide, you will install an Apache web server with virtual hosts on your CentOS 7 server.
The Apache HTTP server is the most widely-used web server in the world. It provides many powerful features including dynamically loadable modules, robust media support, and extensive integration with other popular software.
You will need the following to complete this guide:
Apache is available within CentOS’s default software repositories, which means you an install it with the yum
package manager.
As the non-root sudo user configured in the prerequisites, update the local Apache httpd
package index to reflect the latest upstream changes:
sudo yum update httpd
Once the packages are updated, install the Apache package:
sudo yum install httpd
After confirming the installation, yum
will install Apache and all required dependencies. Once the installation completes, you are ready to start the service.
Apache does not automatically start on CentOS once the installation completes. You will need to start the Apache process manually:
sudo systemctl start httpd
Verify that the service is running with the following command:
sudo systemctl status httpd
You will see an active
status when the service is running:
OutputRedirecting to /bin/systemctl status httpd.service
● httpd.service - The Apache HTTP Server
Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
Active: active (running) since Wed 2019-02-20 01:29:08 UTC; 5s ago
Docs: man:httpd(8)
man:apachectl(8)
Main PID: 1290 (httpd)
Status: "Processing requests..."
CGroup: /system.slice/httpd.service
├─1290 /usr/sbin/httpd -DFOREGROUND
├─1291 /usr/sbin/httpd -DFOREGROUND
├─1292 /usr/sbin/httpd -DFOREGROUND
├─1293 /usr/sbin/httpd -DFOREGROUND
├─1294 /usr/sbin/httpd -DFOREGROUND
└─1295 /usr/sbin/httpd -DFOREGROUND
...
As you can see from this output, the service appears to have started successfully. However, the best way to test this is to request a page from Apache.
You can access the default Apache landing page to confirm that the software is running properly through your IP address. If you do not know your server’s IP address, you can get it a few different ways from the command line.
Type this at your server’s command prompt:
hostname -I
This command will display all of the host’s network addresses, so you will get back a few IP addresses separated by spaces. You can try each in your web browser to see if they work.
Alternatively, you can use curl
to request your IP from icanhazip.com
, which will give you your public IPv4 address as seen from another location on the internet:
curl -4 icanhazip.com
When you have your server’s IP address, enter it into your browser’s address bar:
http://your_server_ip
You’ll see the default CentOS 7 Apache web page:
This page indicates that Apache is working correctly. It also includes some basic information about important Apache files and directory locations. Now that the service is installed and running, you can now use different systemctl
commands to manage the service.
Now that you have your web server up and running, let’s go over some basic management commands.
To stop your web server, type:
sudo systemctl stop httpd
To start the web server when it is stopped, type:
sudo systemctl start httpd
To stop and then start the service again, type:
sudo systemctl restart httpd
If you are simply making configuration changes, Apache can often reload without dropping connections. To do this, use this command:
sudo systemctl reload httpd
By default, Apache is configured to start automatically when the server boots. If this is not what you want, disable this behavior by typing:
sudo systemctl disable httpd
To re-enable the service to start up at boot, type:
sudo systemctl enable httpd
Apache will now start automatically when the server boots again.
The default configuration for Apache will allow your server to host a single website. If you plan on hosting multiple domains on your server, you will need to configure virtual hosts on your Apache web server.
When using the Apache web server, you can use virtual hosts (similar to server blocks in Nginx) to encapsulate configuration details and host more than one domain from a single server. In this step, you will set up a domain called example.com
, but you should replace this with your own domain name. To learn more about setting up a domain name with DigitalOcean, see our Introduction to DigitalOcean DNS.
Apache on CentOS 7 has one server block enabled by default that is configured to serve documents from the /var/www/html
directory. While this works well for a single site, it can become unwieldy if you are hosting multiple sites. Instead of modifying /var/www/html
, you will create a directory structure within /var/www
for the example.com
site, leaving /var/www/html
in place as the default directory to be served if a client request doesn’t match any other sites.
Create the html
directory for example.com
as follows, using the -p
flag to create any necessary parent directories:
sudo mkdir -p /var/www/example.com/html
Create an additional directory to store log files for the site:
sudo mkdir -p /var/www/example.com/log
Next, assign ownership of the html
directory with the $USER
environmental variable:
sudo chown -R $USER:$USER /var/www/example.com/html
Make sure that your web root has the default permissions set:
sudo chmod -R 755 /var/www
Next, create a sample index.html
page using vi
or your favorite editor:
sudo vi /var/www/example.com/html/index.html
Press i
to switch to INSERT
mode and add the following sample HTML to the file:
/var/www/example.com/html/index.html
<html>
<head>
<title>Welcome to Example.com!</title>
</head>
<body>
<h1>Success! The example.com virtual host is working!</h1>
</body>
</html>
Save and close the file by pressing ESC
, typing :wq
, and pressing ENTER
.
With your site directory and sample index file in place, you are almost ready to create the virtual host files. Virtual host files specify the configuration of your separate sites and tell the Apache web server how to respond to various domain requests.
Before you create your virtual hosts, you will need to create a sites-available
directory to store them in. You will also create the sites-enabled
directory that tells Apache that a virtual host is ready to serve to visitors. The sites-enabled
directory will hold symbolic links to virtual hosts that we want to publish. Create both directories with the following command:
sudo mkdir /etc/httpd/sites-available /etc/httpd/sites-enabled
Next, you will tell Apache to look for virtual hosts in the sites-enabled
directory. To accomplish this, edit Apache’s main configuration file and add a line declaring an optional directory for additional configuration files:
sudo vi /etc/httpd/conf/httpd.conf
Add this line to the end of the file:
IncludeOptional sites-enabled/*.conf
Save and close the file when you are done adding that line. Now that you have your virtual host directories in place, you will create your virtual host file.
Start by creating a new file in the sites-available
directory:
sudo vi /etc/httpd/sites-available/example.com.conf
Add in the following configuration block, and change the example.com
domain to your domain name:
/etc/httpd/sites-available/example.com.conf
<VirtualHost *:80>
ServerName www.example.com
ServerAlias example.com
DocumentRoot /var/www/example.com/html
ErrorLog /var/www/example.com/log/error.log
CustomLog /var/www/example.com/log/requests.log combined
</VirtualHost>
This will tell Apache where to find the root directly that holds the publicly accessible web documents. It also tells Apache where to store error and request logs for this particular site.
Save and close the file when you are finished.
Now that you have created the virtual host files, you will enable them so that Apache knows to serve them to visitors. To do this, create a symbolic link for each virtual host in the sites-enabled
directory:
sudo ln -s /etc/httpd/sites-available/example.com.conf /etc/httpd/sites-enabled/example.com.conf
Your virtual host is now configured and ready to serve content. Before restarting the Apache service, let’s make sure that SELinux has the correct policies in place for your virtual hosts.
SELinux is configured to work with the default Apache configuration. Since you set up a custom log directory in the virtual hosts configuration file, you will receive an error if you attempt to start the Apache service. To resolve this, you need to update the SELinux policies to allow Apache to write to the necessary files. SELinux brings heightened security to your CentOS 7 environment, therefore it is not recommended to completely disable the kernel module.
There are different ways to set policies based on your environment’s needs, as SELinux allows you to customize your security level. This step will cover two methods of adjusting Apache policies: universally and on a specific directory. Adjusting policies on directories is more secure, and is therefore the recommended approach.
Setting the Apache policy universally will tell SELinux to treat all Apache processes identically by using the httpd_unified
boolean. While this approach is more convenient, it will not give you the same level of control as an approach that focuses on a file or directory policy.
Run the following command to set a universal Apache policy:
sudo setsebool -P httpd_unified 1
The setsebool
command changes SELinux boolean values. The -P
flag will update the boot-time value, making this change persist across reboots. httpd_unified
is the boolean that will tell SELinux to treat all Apache processes as the same type, so you enabled it with a value of 1
.
Individually setting SELinux permissions for the /var/www/<span class="highlight">example.com</span>/log
directory will give you more control over your Apache policies, but may also require more maintenance. Since this option is not universally setting policies, you will need to manually set the context type for any new log directories specified in your virtual host configurations.
First, check the context type that SELinux gave the /var/www/<span class="highlight">example.com</span>/log
directory:
sudo ls -dZ /var/www/example.com/log/
This command lists and prints the SELinux context of the directory. You will see output similar to the following:
Outputdrwxr-xr-x. root root unconfined_u:object_r:httpd_sys_content_t:s0 /var/www/example.com/log/
The current context is httpd_sys_content_t
, which tells SELinux that the Apache process can only read files created in this directory. In this tutorial, you will change the context type of the /var/www/<span class="highlight">example.com</span>/log
directory to httpd_log_t
. This type will allow Apache to generate and append to web application log files:
sudo semanage fcontext -a -t httpd_log_t "/var/www/example.com/log(/.*)?"
Next, use the restorecon
command to apply these changes and have them persist across reboots:
sudo restorecon -R -v /var/www/example.com/log
The -R
flag runs this command recursively, meaning it will update any existing files to use the new context. The -v
flag will print the context changes the command made. You will see the following output confirming the changes:
Outputrestorecon reset /var/www/example.com/log context unconfined_u:object_r:httpd_sys_content_t:s0->unconfined_u:object_r:httpd_log_t:s0
You can list the contexts once more to see the changes:
sudo ls -dZ /var/www/example.com/log/
The output reflects the updated context type:
Outputdrwxr-xr-x. root root unconfined_u:object_r:httpd_log_t:s0 /var/www/example.com/log
Now that the /var/www/<span class="highlight">example.com</span>/log
directory is using the httpd_log_t
type, you are ready to test your virtual host configuration.
Once the SELinux context has been updated with either method, Apache will be able to write to the /var/www/<span class="highlight">example.com</span>/log
directory. You can now successfully restart the Apache service:
sudo systemctl restart httpd
List the contents of the /var/www/<span class="highlight">example.com</span>/log
directory to see if Apache created the log files:
ls -lZ /var/www/example.com/log
You’ll see that Apache was able to create the error.log
and requests.log
files specified in the virtual host configuration:
Output-rw-r--r--. 1 root root 0 Feb 26 22:54 error.log
-rw-r--r--. 1 root root 0 Feb 26 22:54 requests.log
Now that you have your virtual host set up and SELinux permissions updated, Apache will now serve your domain name. You can test this by navigating to [http://<span](http://<span "http://<span") class="highlight">example.com</span>
, where you should see something like this:
This confirms that your virtual host is successfully configured and serving content. Repeat Steps 4 and 5 to create new virtual hosts with SELinux permissions for additional domains.
In this tutorial, you installed and managed the Apache web server. Now that you have your web server installed, you have many options for the type of content you can serve and the technologies you can use to create a richer experience.
#web-development #web-service #apache
1595855400
pgAdmin is the leading graphical Open Source management, development and administration tool for PostgreSQL. pgAdmin4 is a rewrite of the popular pgAdmin3 management tool for the PostgreSQL database.
In this tutorial, we are going to show you how to install pgAdmin4 in Server Mode as a web application using httpd and Wsgi module on CentOS 8.
**01-**To install pgAdmin4 on CentOS 8 we need to add an external repository, so execute the following command:
$ sudo rpm -i https://ftp.postgresql.org/pub/pgadmin/pgadmin4/yum/pgadmin4-redhat-repo-1-1.noarch.rpm
02- After we add the pgAdmin4 repository, let’s use the below command to install pgAdmin4 as server mode:
$ sudo dnf install pgadmin4-web
03- Before proceeding with the configuration of pgAdmin4, we need to install policycoreutils
tool:
$ dnf install policycoreutils-python-utils
04- Once we done installing pgAdmin4, we need to configure the pgAdmin4 by setting up the initial pgAdmin user account
#databases #linux #ubuntu #install pgadmin4 #install pgadmin4 centos #pgadmin #pgadmin 4 install #pgadmin 4 install centos #pgadmin4 #pgadmin4 install centos
1560836064
In this guide, you will install an Apache web server with virtual hosts on your CentOS 7 server.
The Apache HTTP server is the most widely-used web server in the world. It provides many powerful features including dynamically loadable modules, robust media support, and extensive integration with other popular software.
You will need the following to complete this guide:
Apache is available within CentOS’s default software repositories, which means you an install it with the yum
package manager.
As the non-root sudo user configured in the prerequisites, update the local Apache httpd
package index to reflect the latest upstream changes:
sudo yum update httpd
Once the packages are updated, install the Apache package:
sudo yum install httpd
After confirming the installation, yum
will install Apache and all required dependencies. Once the installation completes, you are ready to start the service.
Apache does not automatically start on CentOS once the installation completes. You will need to start the Apache process manually:
sudo systemctl start httpd
Verify that the service is running with the following command:
sudo systemctl status httpd
You will see an active
status when the service is running:
OutputRedirecting to /bin/systemctl status httpd.service
● httpd.service - The Apache HTTP Server
Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
Active: active (running) since Wed 2019-02-20 01:29:08 UTC; 5s ago
Docs: man:httpd(8)
man:apachectl(8)
Main PID: 1290 (httpd)
Status: "Processing requests..."
CGroup: /system.slice/httpd.service
├─1290 /usr/sbin/httpd -DFOREGROUND
├─1291 /usr/sbin/httpd -DFOREGROUND
├─1292 /usr/sbin/httpd -DFOREGROUND
├─1293 /usr/sbin/httpd -DFOREGROUND
├─1294 /usr/sbin/httpd -DFOREGROUND
└─1295 /usr/sbin/httpd -DFOREGROUND
...
As you can see from this output, the service appears to have started successfully. However, the best way to test this is to request a page from Apache.
You can access the default Apache landing page to confirm that the software is running properly through your IP address. If you do not know your server’s IP address, you can get it a few different ways from the command line.
Type this at your server’s command prompt:
hostname -I
This command will display all of the host’s network addresses, so you will get back a few IP addresses separated by spaces. You can try each in your web browser to see if they work.
Alternatively, you can use curl
to request your IP from icanhazip.com
, which will give you your public IPv4 address as seen from another location on the internet:
curl -4 icanhazip.com
When you have your server’s IP address, enter it into your browser’s address bar:
http://your_server_ip
You’ll see the default CentOS 7 Apache web page:
This page indicates that Apache is working correctly. It also includes some basic information about important Apache files and directory locations. Now that the service is installed and running, you can now use different systemctl
commands to manage the service.
Now that you have your web server up and running, let’s go over some basic management commands.
To stop your web server, type:
sudo systemctl stop httpd
To start the web server when it is stopped, type:
sudo systemctl start httpd
To stop and then start the service again, type:
sudo systemctl restart httpd
If you are simply making configuration changes, Apache can often reload without dropping connections. To do this, use this command:
sudo systemctl reload httpd
By default, Apache is configured to start automatically when the server boots. If this is not what you want, disable this behavior by typing:
sudo systemctl disable httpd
To re-enable the service to start up at boot, type:
sudo systemctl enable httpd
Apache will now start automatically when the server boots again.
The default configuration for Apache will allow your server to host a single website. If you plan on hosting multiple domains on your server, you will need to configure virtual hosts on your Apache web server.
When using the Apache web server, you can use virtual hosts (similar to server blocks in Nginx) to encapsulate configuration details and host more than one domain from a single server. In this step, you will set up a domain called example.com
, but you should replace this with your own domain name. To learn more about setting up a domain name with DigitalOcean, see our Introduction to DigitalOcean DNS.
Apache on CentOS 7 has one server block enabled by default that is configured to serve documents from the /var/www/html
directory. While this works well for a single site, it can become unwieldy if you are hosting multiple sites. Instead of modifying /var/www/html
, you will create a directory structure within /var/www
for the example.com
site, leaving /var/www/html
in place as the default directory to be served if a client request doesn’t match any other sites.
Create the html
directory for example.com
as follows, using the -p
flag to create any necessary parent directories:
sudo mkdir -p /var/www/example.com/html
Create an additional directory to store log files for the site:
sudo mkdir -p /var/www/example.com/log
Next, assign ownership of the html
directory with the $USER
environmental variable:
sudo chown -R $USER:$USER /var/www/example.com/html
Make sure that your web root has the default permissions set:
sudo chmod -R 755 /var/www
Next, create a sample index.html
page using vi
or your favorite editor:
sudo vi /var/www/example.com/html/index.html
Press i
to switch to INSERT
mode and add the following sample HTML to the file:
/var/www/example.com/html/index.html
<html>
<head>
<title>Welcome to Example.com!</title>
</head>
<body>
<h1>Success! The example.com virtual host is working!</h1>
</body>
</html>
Save and close the file by pressing ESC
, typing :wq
, and pressing ENTER
.
With your site directory and sample index file in place, you are almost ready to create the virtual host files. Virtual host files specify the configuration of your separate sites and tell the Apache web server how to respond to various domain requests.
Before you create your virtual hosts, you will need to create a sites-available
directory to store them in. You will also create the sites-enabled
directory that tells Apache that a virtual host is ready to serve to visitors. The sites-enabled
directory will hold symbolic links to virtual hosts that we want to publish. Create both directories with the following command:
sudo mkdir /etc/httpd/sites-available /etc/httpd/sites-enabled
Next, you will tell Apache to look for virtual hosts in the sites-enabled
directory. To accomplish this, edit Apache’s main configuration file and add a line declaring an optional directory for additional configuration files:
sudo vi /etc/httpd/conf/httpd.conf
Add this line to the end of the file:
IncludeOptional sites-enabled/*.conf
Save and close the file when you are done adding that line. Now that you have your virtual host directories in place, you will create your virtual host file.
Start by creating a new file in the sites-available
directory:
sudo vi /etc/httpd/sites-available/example.com.conf
Add in the following configuration block, and change the example.com
domain to your domain name:
/etc/httpd/sites-available/example.com.conf
<VirtualHost *:80>
ServerName www.example.com
ServerAlias example.com
DocumentRoot /var/www/example.com/html
ErrorLog /var/www/example.com/log/error.log
CustomLog /var/www/example.com/log/requests.log combined
</VirtualHost>
This will tell Apache where to find the root directly that holds the publicly accessible web documents. It also tells Apache where to store error and request logs for this particular site.
Save and close the file when you are finished.
Now that you have created the virtual host files, you will enable them so that Apache knows to serve them to visitors. To do this, create a symbolic link for each virtual host in the sites-enabled
directory:
sudo ln -s /etc/httpd/sites-available/example.com.conf /etc/httpd/sites-enabled/example.com.conf
Your virtual host is now configured and ready to serve content. Before restarting the Apache service, let’s make sure that SELinux has the correct policies in place for your virtual hosts.
SELinux is configured to work with the default Apache configuration. Since you set up a custom log directory in the virtual hosts configuration file, you will receive an error if you attempt to start the Apache service. To resolve this, you need to update the SELinux policies to allow Apache to write to the necessary files. SELinux brings heightened security to your CentOS 7 environment, therefore it is not recommended to completely disable the kernel module.
There are different ways to set policies based on your environment’s needs, as SELinux allows you to customize your security level. This step will cover two methods of adjusting Apache policies: universally and on a specific directory. Adjusting policies on directories is more secure, and is therefore the recommended approach.
Setting the Apache policy universally will tell SELinux to treat all Apache processes identically by using the httpd_unified
boolean. While this approach is more convenient, it will not give you the same level of control as an approach that focuses on a file or directory policy.
Run the following command to set a universal Apache policy:
sudo setsebool -P httpd_unified 1
The setsebool
command changes SELinux boolean values. The -P
flag will update the boot-time value, making this change persist across reboots. httpd_unified
is the boolean that will tell SELinux to treat all Apache processes as the same type, so you enabled it with a value of 1
.
Individually setting SELinux permissions for the /var/www/<span class="highlight">example.com</span>/log
directory will give you more control over your Apache policies, but may also require more maintenance. Since this option is not universally setting policies, you will need to manually set the context type for any new log directories specified in your virtual host configurations.
First, check the context type that SELinux gave the /var/www/<span class="highlight">example.com</span>/log
directory:
sudo ls -dZ /var/www/example.com/log/
This command lists and prints the SELinux context of the directory. You will see output similar to the following:
Outputdrwxr-xr-x. root root unconfined_u:object_r:httpd_sys_content_t:s0 /var/www/example.com/log/
The current context is httpd_sys_content_t
, which tells SELinux that the Apache process can only read files created in this directory. In this tutorial, you will change the context type of the /var/www/<span class="highlight">example.com</span>/log
directory to httpd_log_t
. This type will allow Apache to generate and append to web application log files:
sudo semanage fcontext -a -t httpd_log_t "/var/www/example.com/log(/.*)?"
Next, use the restorecon
command to apply these changes and have them persist across reboots:
sudo restorecon -R -v /var/www/example.com/log
The -R
flag runs this command recursively, meaning it will update any existing files to use the new context. The -v
flag will print the context changes the command made. You will see the following output confirming the changes:
Outputrestorecon reset /var/www/example.com/log context unconfined_u:object_r:httpd_sys_content_t:s0->unconfined_u:object_r:httpd_log_t:s0
You can list the contexts once more to see the changes:
sudo ls -dZ /var/www/example.com/log/
The output reflects the updated context type:
Outputdrwxr-xr-x. root root unconfined_u:object_r:httpd_log_t:s0 /var/www/example.com/log
Now that the /var/www/<span class="highlight">example.com</span>/log
directory is using the httpd_log_t
type, you are ready to test your virtual host configuration.
Once the SELinux context has been updated with either method, Apache will be able to write to the /var/www/<span class="highlight">example.com</span>/log
directory. You can now successfully restart the Apache service:
sudo systemctl restart httpd
List the contents of the /var/www/<span class="highlight">example.com</span>/log
directory to see if Apache created the log files:
ls -lZ /var/www/example.com/log
You’ll see that Apache was able to create the error.log
and requests.log
files specified in the virtual host configuration:
Output-rw-r--r--. 1 root root 0 Feb 26 22:54 error.log
-rw-r--r--. 1 root root 0 Feb 26 22:54 requests.log
Now that you have your virtual host set up and SELinux permissions updated, Apache will now serve your domain name. You can test this by navigating to [http://<span](http://<span "http://<span") class="highlight">example.com</span>
, where you should see something like this:
This confirms that your virtual host is successfully configured and serving content. Repeat Steps 4 and 5 to create new virtual hosts with SELinux permissions for additional domains.
In this tutorial, you installed and managed the Apache web server. Now that you have your web server installed, you have many options for the type of content you can serve and the technologies you can use to create a richer experience.
#web-development #web-service #apache
1591448040
Setting up a mail server on Linux from scratch is a pain in the neck. This tutorial is going to show you how to quickly set up your own email server on CentOS 7 with Modoboa, saving you lots of time and headaches. Modoboa is a free and open-source mail hosting and management platform designed to work with Postfix SMTP server and Dovecot IMAP/POP3 server.
Modoboa is written in Python, released under the terms of ISC license. At the time of writing, the latest version is v1.14.0, released on July 5, 2019. Main features of Modoboa are as follows
#mail server #centos #centos server #linux #mail server #modoboa
1595855160
Apache HTTP server is the most used in the world. It offers many powerful features, including dynamically loaded modules, strong media compatibility, and extensive integration with other popular software tools.
Through this guide, you will install an Apache web server with virtual hosts on your CentOS 8 server.
You will need the following to complete this guide:
Apache is available within the default CentOS software repositories, which means you can install it with the package manager dnf
.
Since we configured a non-root sudo user in the prerequisites, install the Apache package:
sudo dnf install httpd
Once the installation is confirmed, it will dnf
install Apache and all the necessary dependencies.
By completing step 4 of the Initial Server Configuration with CentOS 8 guide mentioned in the prerequisites section, you have already installed firewalld
on your server to supply requests via HTTP.
If you are also planning to configure Apache to provide content over HTTPS, you may also want to open the port 443
by enabling the service https
:
sudo firewall-cmd --permanent --add-service=https
Then reload the firewall for these new rules to take effect:
sudo firewall-cmd --reload
Once the firewall is reloaded, you are ready to start the service and check the web server.
Once the installation is complete, Apache does not start automatically in CentOS, so you will have to start the Apache process manually:
sudo systemctl start httpd
Verify that the service works with the following command:
sudo systemctl status httpd
You will get a status active
when the service is running:
Output
● httpd.service - The Apache HTTP Server
Loaded: loaded (/usr/lib/systemd/system/httpd.service; disabled; vendor preset: disa>
Active: active (running) since Thu 2020-04-23 22:25:33 UTC; 11s ago
Docs: man:httpd.service(8)
Main PID: 14219 (httpd)
Status: "Running, listening on: port 80"
Tasks: 213 (limit: 5059)
Memory: 24.9M
CGroup: /system.slice/httpd.service
├─14219 /usr/sbin/httpd -DFOREGROUND
├─14220 /usr/sbin/httpd -DFOREGROUND
├─14221 /usr/sbin/httpd -DFOREGROUND
├─14222 /usr/sbin/httpd -DFOREGROUND
└─14223 /usr/sbin/httpd -DFOREGROUND
...
As this result indicates, the service started successfully. However, the best way to check this is to request an Apache page.
You can access Apache’s default landing page to confirm that the software is working properly using its IP address: If you don’t know your server’s IP address, you can obtain it in several ways from the command line.
Type q
to return to the command line, and then type:
hostname -I
This command will display all the network addresses of the host, so you will get some IP addresses separated by spaces. You can test each one in the web browser to determine if they work.
Alternatively, you can use curl
to request your IP at icanhazip.com
, which will provide you with your public IPv4 address as it appears in another location on the Internet:
curl -4 icanhazip.com
When you have the IP address of your server, enter it in the address bar of your browser:
http://your_server_ip
It will display the default Apache web page in CentOS 8:
This page indicates that Apache is working properly. It also includes basic information about important Apache files and directory locations.
#centos #apache #centos 8
1591387380
Roundcube is a free and open source webmail client written in PHP. A webmail is a mail client in your browser, which means instead of reading and sending emails from a desktop mail client like Mozilla Thunderbird, you can access your email from a web browser. Roundcube functionality includes MIME support, address book, folder management, message searching and spell checking. This tutorial is going to show you how to install Roundcube webmail on CentOS 8/RHEL 8 with Apache or Nginx web server.
#centos #mail server #redhat #centos server #linux #red hat #red hat server #roundcube webmail