1596460080
HTTP-сервер Apache — самый широко используемый веб-сервер в мире. Он имеет множество мощных функций, включая динамически загружаемые модули, надежную поддержку различных медиаформатов и интеграцию с другим популярным программным обеспечением.
С помощью этого руководства вы установите веб-сервер Apache с виртуальными хостами на ваш сервер на базе CentOS 8.
Для выполнения данного руководства вам потребуется следующее:
Apache доступен в используемых по умолчанию репозиториях программного обеспечения CentOS, т. е. вы можете установить его с помощью диспетчера пакетов dnf
.
С помощью пользователя без прав root с привилегиями sudo, настроенного согласно предварительным требованиям, установите пакет Apache:
sudo dnf install httpd
После подтверждения установки dnf
установит Apache и все требуемые зависимости.
Если вы выполнили рекомендации из руководства Начальная настройка сервера с CentOS 8. Шаг 4, указанные в разделе предварительных требований, на вашем сервере уже будет установлен брандмауэр firewalld
для обслуживания запросов через HTTP.
Если вы планируете настроить Apache для обслуживания запросов через HTTPS, вам также нужно открыть порт `443`, включив службу `https`:
#apache #centos 8
1596460080
HTTP-сервер Apache — самый широко используемый веб-сервер в мире. Он имеет множество мощных функций, включая динамически загружаемые модули, надежную поддержку различных медиаформатов и интеграцию с другим популярным программным обеспечением.
С помощью этого руководства вы установите веб-сервер Apache с виртуальными хостами на ваш сервер на базе CentOS 8.
Для выполнения данного руководства вам потребуется следующее:
Apache доступен в используемых по умолчанию репозиториях программного обеспечения CentOS, т. е. вы можете установить его с помощью диспетчера пакетов dnf
.
С помощью пользователя без прав root с привилегиями sudo, настроенного согласно предварительным требованиям, установите пакет Apache:
sudo dnf install httpd
После подтверждения установки dnf
установит Apache и все требуемые зависимости.
Если вы выполнили рекомендации из руководства Начальная настройка сервера с CentOS 8. Шаг 4, указанные в разделе предварительных требований, на вашем сервере уже будет установлен брандмауэр firewalld
для обслуживания запросов через HTTP.
Если вы планируете настроить Apache для обслуживания запросов через HTTPS, вам также нужно открыть порт `443`, включив службу `https`:
#apache #centos 8
1596546540
HTTP-сервер Apache — самый широко используемый веб-сервер в мире. Он имеет множество мощных функций, включая динамически загружаемые модули, надежную поддержку различных медиаформатов и интеграцию с другим популярным программным обеспечением.
С помощью этого руководства вы установите веб-сервер Apache с виртуальными хостами на ваш сервер на базе CentOS 8. Более подробную версию этого обучающего модуля можно найти в документе «Установка веб-сервера Apache в CentOS 8».
Для выполнения данного руководства вам потребуется следующее:
Apache доступен в используемых по умолчанию репозиториях программного обеспечения CentOS, т. е. вы можете установить его с помощью диспетчера пакетов dnf
.
С помощью non-root user с привилегиями sudo, настроенного согласно предварительным требованиям, установите пакет Apache:
sudo dnf install httpd
После подтверждения установки dnf
установит Apache и все требуемые зависимости.
#apache #centos 8
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
1615787193
Descargue el MBOX al convertidor PST y convierta los archivos MBOX al formato PST. Con esta aplicación, los archivos se convierten a gran velocidad sin ningún problema. Para conocer la aplicación el usuario puede instalar la versión demo de esta aplicación y así conocer la aplicación y su funcionamiento. Con una alta velocidad de compatibilidad, la aplicación convierte todos los archivos MBOX en formato PST.
Esta aplicación avanzada funciona en un orden específico para convertir los archivos MBOX a formato PST. Por lo tanto, a continuación se muestran algunos de los puntos que hablan sobre la aplicación y ver si la aplicación cumple con todas las expectativas del usuario.
Por lo tanto, la aplicación ofrece estas funciones avanzadas que permiten que el software funcione de manera avanzada.
Los usuarios pueden convertir el archivo en unos pocos pasos sin asistencia técnica. Siga estos pasos para convertir su archivo MBOX al formato PST de Outlook:
Paso 1: descargue el convertidor MBOX a PST
Paso 2- Inicie el convertidor
Paso 3- Seleccione los archivos MBOX que desea convertir
Paso 4- Ahora, elija el tipo que desea exportar los archivos.
Paso 5- Elija la ubicación donde desea guardar el archivo
Paso 6- Finalmente, haga clic derecho en el botón “Convertir ahora”.
Estos pasos pueden ser realizados por cualquier usuario novato.
Analicemos las funciones inteligentes de este convertidor que se indican a continuación:
Esta herramienta convierte archivos MBOX de cualquier tipo desde Thunderbird a Apple Mail. Este es un convertidor avanzado.
Los usuarios pueden convertir cualquier cantidad de archivos de datos sin ningún obstáculo. No importa cuál sea el tamaño del archivo MBOX, la conversión procede.
Los archivos que selecciona el usuario se convierten de archivos MBOX al formato PST de Outlook. Los resultados convertidos son los deseados por los usuarios.
El usuario puede guardar el archivo en cualquier ubicación donde el usuario quiera guardarlo. En una ubicación adecuada, se guardan los datos convertidos.
El usuario proporciona una interfaz fácil de usar que ayuda al usuario a convertir los archivos sin problemas y sin ningún obstáculo.
El resultado proporcionado por la aplicación es 100% exacto. La calidad del resultado sigue siendo impecable.
La aplicación da todos los resultados adecuados después de la conversión. Con una alta velocidad de compatibilidad, la tarea de conversión es procesada por la aplicación sin ningún error. Descargue la versión de demostración gratuita del convertidor MBOX a PST para ver si funciona.
Más información:- https://www.datavare.com/ru/конвертер-mbox-в-pst.html
#конвертер mbox в pst #mbox в импортер pst #преобразование mbox в pst #mbox в экспортер pst #конвертировать mbox в pst #импортировать mbox в pst
1594138500
Apache Solr is an open-source search platform written on Java. Solr provides full-text search, spell suggestions, custom document ordering and ranking, Snippet generation and highlighting. Solr handles a variety of data types out of the box, including JSON, XML, many Office documents, CSV and more. At the time of writing this tutoria, Solr 8.5.2 is the latest version available for installation.
This tutorial will help you to install Apache Solr 8.5 on CentOS/RHEL 8 systems.
We assume you already have shell access to your CentOS/RHEL 8 system with sudo privilege account. For remote systems, login with SSH client.
The Latest version of Apache Solr required Java 8 or greater version to run. Make sure your system fulfills the Java requirements on your system. If not run the following command to install Java.
sudo dnf install java-11-openjdk
Then check installed Java version:
java -version
openjdk version "11.0.4" 2019-07-16 LTS
OpenJDK Runtime Environment 18.9 (build 11.0.4+11-LTS)
OpenJDK 64-Bit Server VM 18.9 (build 11.0.4+11-LTS, mixed mode, sharing)
Now download the required Solr version from its official site or mirrors. You may also use the below command to download Apache Solr 8.5.2 from its official website. After that extract the installer script.
cd /tmp
wget http://www-eu.apache.org/dist/lucene/solr/8.5.2/solr-8.5.2.tgz
tar xzf solr-8.5.2.tgz solr-8.5.2/bin/install_solr_service.sh --strip-components=2
Then execute the installer script with bash shell followed with downloaded Archive file. The command will be like below:
sudo bash ./install_solr_service.sh solr-8.5.2.tgz
This will create an account named solr on your system and finish the installation process. After that start the service default Solr port 8983.
#linux tutorials #apache #centos 8 #solr