Cómo instalar Vtiger CRM Open Source Edition en CentOS 7
Aprende cómo instalar Vtiger CRM, una aplicación de gestión de relaciones con el cliente, en CentOS 7 para aumentar tus ventas y mejorar el servicio al cliente.
This tutorial will show you how to install Elixir and Phoenix frameworks on a Vultr Ubuntu 16.04 server instance for development purposes.
Update the system:
sudo apt-get update
Install Erlang with the following commands:
cd ~
wget https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb
sudo dpkg -i erlang-solutions_1.0_all.deb
sudo apt-get update
sudo apt-get install esl-erlang
You can verify the installation:
erl
This will take you to the Erlang shell with following output:
Erlang/OTP 21 [erts-10.1] [source] [64-bit] [smp:1:1] [ds:1:1:10] [async-threads:1] [hipe]
Eshell V10.1 (abort with ^G)
1>
Press CTRL + C twice to exit the Erlang shell.
Install Elixir with apt-get
:
sudo apt-get install elixir
Now you can verify the Elixir installation:
elixir -v
This will show the following output:
Erlang/OTP 21 [erts-10.1] [source] [64-bit] [smp:1:1] [ds:1:1:10] [async-threads:1] [hipe]
Elixir 1.7.3 (compiled with Erlang/OTP 20)
Now you have Elixir 1.7.3 installed on your system.
If we have just installed Elixir for the first time, we will need to install the Hex package manager as well. Hex is necessary to get a Phoenix app running, and to install any extra dependencies we might need along the way.
Type this command to install Hex:
mix local.hex
Now we can proceed to install Phoenix:
mix archive.install https://github.com/phoenixframework/archives/raw/master/phx_new.ez
Phoenix uses brunch.io to compile static assets, (javascript, css and more), so you will need to install Node.js.
The recommended way to install Node.js is via nvm
(node version manager).
To install nvm
we run this command:
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
To find out the versions of Node.js that are available for installation, you can type the following:
nvm ls-remote
This will output:
Output
...
v8.8.1
v8.9.0 (LTS: Carbon)
v8.9.1 (LTS: Carbon)
v8.9.2 (LTS: Carbon)
v8.9.3 (LTS: Carbon)
v8.9.4 (LTS: Carbon)
v8.10.0 (LTS: Carbon)
v8.11.0 (LTS: Carbon)
v8.11.1 (LTS: Carbon)
v8.11.2 (LTS: Carbon)
v8.11.3 (LTS: Carbon)
v8.11.4 (LTS: Carbon)
-> v8.12.0 (Latest LTS: Carbon)
...
Install the version you would like with the following command:
nvm install 8.12.0
Note: If you would like to use a different version, replace 8.12.0
with the version you would like.
Tell nvm
to use the version we just downloaded:
nvm use 8.12.0
Verify node has successfully installed:
node -v
You can install PostgreSQL easily using the apt packaging system.
sudo apt-get update
sudo apt-get install postgresql postgresql-contrib
Open the PostgreSQL shell:
sudo -u postgres psql
Change the postgres
password to a secure password:
\password postgres
After successfully changing the password, you can exit the PostgreSQL shell:
\q
Restart the PostgreSQL service:
sudo systemctl restart postgresql.service
inotify-tools
This is a Linux-only filesystem watcher that Phoenix uses for live code reloading:
sudo apt-get install inotify-tools
Create a new application:
mix phoenix.new ~/phoenix_project_test
If the command returns the following error:
** (Mix) The task "phx.new" could not be found
You can fix it with the following command:
mix archive.install https://raw.githubusercontent.com/phoenixframework/archives/master/phx_new.ez
Now rerun the command to create a test Phoenix app:
mix phoenix.new ~/phoenix_project_test
Change the PostgreSQL password in the config file with the password you set in the previous step:
nano config/dev.exs
The application will now be successfully created. Move to the application folder and start it:
cd ~/phoenix_project_test
mix ecto.create
mix phx.server
Now the Phoenix application is up and running at port 4000
.
Aprende cómo instalar Vtiger CRM, una aplicación de gestión de relaciones con el cliente, en CentOS 7 para aumentar tus ventas y mejorar el servicio al cliente.
Esta guía completa le mostrará cómo configurar un servidor Counter-Strike 1.6 en Linux, optimizando el rendimiento y la seguridad para el mejor juego. Aprende los pasos más recientes aquí.
ZPanel, un panel de control de alojamiento web popular, se bifurcó en 2014 a un nuevo proyecto llamado Sentora. Aprende a instalar Sentora en tu servidor con este tutorial.
Aprende cómo instalar Vtiger CRM, una aplicación de gestión de relaciones con el cliente, en CentOS 7 para aumentar tus ventas y mejorar el servicio al cliente.
Esta guía completa le mostrará cómo configurar un servidor Counter-Strike 1.6 en Linux, optimizando el rendimiento y la seguridad para el mejor juego. Aprende los pasos más recientes aquí.
Los ataques de ransomware van en aumento, pero ¿puede la IA ayudar a lidiar con el último virus informático? ¿Es la IA la respuesta? Lea aquí, sepa que la IA es una bendición o una perdición
ReactOS, un sistema operativo de código abierto y gratuito, está aquí con la última versión. ¿Puede satisfacer las necesidades de los usuarios de Windows de hoy en día y acabar con Microsoft? Averigüemos más sobre este estilo antiguo, pero una experiencia de sistema operativo más nueva.
Whatsapp finalmente lanzó la aplicación de escritorio para usuarios de Mac y Windows. Ahora puede acceder a Whatsapp desde Windows o Mac fácilmente. Disponible para Windows 8+ y Mac OS 10.9+
Lea esto para saber cómo la Inteligencia Artificial se está volviendo popular entre las empresas de pequeña escala y cómo está aumentando las probabilidades de hacerlas crecer y dar ventaja a sus competidores.
Recientemente, Apple lanzó macOS Catalina 10.15.4, una actualización complementaria para solucionar problemas, pero parece que la actualización está causando más problemas que conducen al bloqueo de las máquinas Mac. Lee este artículo para obtener más información
13 Herramientas comerciales de extracción de datos de Big Data
Nuestra computadora almacena todos los datos de una manera organizada conocida como sistema de archivos de diario. Es un método eficiente que permite a la computadora buscar y mostrar archivos tan pronto como presiona buscar.