Friday, November 15GNOME IT SOLUTIONS LLC

Other Linux

How to set automatic e-mail report and alarm VOS3000

How to set automatic e-mail report and alarm VOS3000

GNOME LATEST POST, Other Linux
1.Check mail feature:Login into your server using SSH protocol, check mail feature:/etc/init.d/postfix status If you see the picture above, it means the mail feature is working properly.Note:If the mail feature is not working properly, please contact tech support.2.VOS Client SettingSMTP Setting: In the VOS client interface, click ‹System management› → ‹System parameter›Please refer to the figure below: Go to /etc/hosts and edit the file with your domain name "Smtp domain name" info. Check the below figure 3.Automatic e-mail report setting:Step 1: In the VOS client interface, click ‹System management› → ‹System parameter›Automatically generate clearing account detail report: OnNote: The report will be generated around 1 am every day, so the next day can query today’s...
How to Enable exec() in PHP-FPM?

How to Enable exec() in PHP-FPM?

centos, Other Linux, Ubuntu
Sometimes the exec() function is not working after turning on the PHP-FPM and in php configuration file we could not find any disable functions. If we turned off the PHP-FPM the exec function is working again. If you are facing such issues, please follow the below steps. First, you need to verify the PHP-FPM is enabled on the domain that facing the issue. Please follow the steps. 1) Login to WHM. 2) Navigate to MultiPHP Manager to check whether the domain is using PHP-FPM or not. 3) From that page, you can verify that the domain is using PHP-FPM. Now you have verified that PHP-FPM is on the server. So you need to follow the steps to enable exec() in PHP-FPM. 1) Login to server via SSH. 2) Check the PHP version of the server using the below command. #php -v 3...
Find files containing specific text in Linux

Find files containing specific text in Linux

cPanel, Other Linux, Vmware
Find files containing specific text using grep commandgrep is a command-line utility for searching plain-text data sets for lines that match a regular expression. Its name comes from the ed command g/re/p (globally search a regular expression and print), which has the same effect: doing a global search with the regular expression and printing all matching lines. Grep was originally developed for the Unix operating system, but later available for all Unix-like systems. grep command syntax grep "text string to search” directory-path grep [option] "text string to search” directory-path grep -r "text string to search” directory-path grep -r -H "text string to search” directory-path egrep -R "word-1|word-2” directory-path egrep -w -R "word-1|word-2” directory-path F...
Install and Configure phpLDAPAdmin on Linux

Install and Configure phpLDAPAdmin on Linux

Other Linux, Ubuntu, Vmware
Install and Configure phpLDAPAdmin on LinuxphpLDAPadmin is a web application for administering Lightweight Directory Access Protocol (LDAP) servers.It's written in the PHP programming language, and is licensed  under the GNU General Public License. The application is available in 14 languagesand supports UTF-8 encoded directory strings. How to migrate local users to LDAP accounts On CentOS / RHEL: phpLDAPAdmin is not available in the main repository, so you need to enable EPEL repository for Redhat based derivatives. ### For RHEL 7 ### # rpm -ivh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ### For CentOS 7 ### # yum -y install epel-release Install phpLDAPAdmin:Install phpLDAPAdmin using "yum" on CentOS and "apt-get" on Ubuntu....