To allow remote sql login create a user and grant the priviledges
GRANT ALL PRIVILEGES ON . TO ‘root’@’(your public/local IP)’ IDENTIFIED BY ‘(yourpassword)’ WITH GRANT OPTION;
To allow remote sql login create a user and grant the priviledges
GRANT ALL PRIVILEGES ON . TO ‘root’@’(your public/local IP)’ IDENTIFIED BY ‘(yourpassword)’ WITH GRANT OPTION;
When changing time in centos, use the following format.
sudo mv /etc/localtime /etc/localtime.bak
sudo ln -s /usr/share/zoneinfo/Africa/Nairobi /etc/localtime
In Issabel, you can change the recordings location by modifying the “monitor” settings in the asterisk configuration files.
Here are the steps to change the recordings location:
cd /etc/asterisk/
.logger.conf
file by running the command: nano logger.conf
.[general]
.dir=
under the [general]
section. This is where you can set the default directory for your recordings. By default, it should be set to /var/spool/asterisk/monitor
./home/issabel/recordings
.logger.conf
file and exit the text editor.systemctl restart asterisk
.After making these changes, all future recordings will be stored in the new directory that you specified.
1. First, we log into the server as a root user.
2. Then, we open the file sshd_config located in /etc/ssh and add the following directives.
Ciphers aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes128-ctr
MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512,hmac-sha2-256,hmac-ripemd160,hmac-sha1
KexAlgorithms diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1
Issabel uses the default call parking module from issabel. Sometimes the module default time is set to 45 seconds. To change the call park time in issabel you need to edit the following file.
/etc/asterisk/features_general_additional.conf
and add the following line after pickupexten=*8.
parkingtime =>300 (this equates to 5 Minutes)
save and reload your asterisk application.
In Linux sometimes you need to locate the largest file in your system. To do so, you need to select the mount location when searching.
sudo du -aBm / 2>/dev/null | sort -nr | head -n 10
Bitrix Environment for Linux (RPM)
Installation Instructions
Install sequence:
Before or after installation, the Bitrix product must be allowed access to the following
TCP ports in order to function properly:
80 http
443 https
5222 bitrix xmpp server
5223 bitrix xmpp ssl server
25 bitrix smtp server
8890 ntlm authentication
8891 ntlm authentication via ssl
8893 pull server (http)
8894 pull server (https)
Likewise, if you intend to use Bitrix SMTP, you will need to turn off sendmail or other
SMTP services installed by default.
service sendmail stop
SET GLOBAL sql_mode = 'ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION'
Base repository of CentOS has no php7 packages.
You can use remi repo to install php7 on your CentOS 7.
Why Remi?
To install the Remi repository, we need to enable the EPEL repository first.
sudo yum install epel-release yum-utils
sudo yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm
Then Enable php 7.0 (You can use php 7.1+ too)
sudo yum-config-manager --enable remi-php70
Now it’s time to install php7
yum install php php-common php-cli php-mysql
Great!!!
Now you have php7 on your system. You can confirm with :
php -v
Source: https://stackoverflow.com/questions/51006367/update-php-from-5-5-7-to-7-on-centos7/51006990#51006990