Jump to content

Sandeep B.

Administrators
  • Joined

  • Last visited

Everything posted by Sandeep B.

  1. DNSSEC is not planned yet for CWP.
  2. did you tried this steps :
  3. did you've configured disk quota ? please double check and configure it
  4. any screenshot of the error? and what is in the error log when you tried to login, error log is in this directory: /usr/local/cwp/php71/var/log/
  5. Seems its originated from the server, check if user account from where it is originated seems you've some security holes in your script.
  6. You can check email headers where the message is sent/originated from, disabling php mail function is a good idea
  7. great thanks for the information topic updated
  8. HI change your server root password and email passwords, if you're using email client most likely your pc is infected scan the server with maldet :
  9. Sandeep B. replied to Ling's post in a topic in CWP - Control WEB Panel
    fix for 2fa is released for user panel.
  10. hi I can do it for site's donation (any amount) send me the pm.
  11. it seems your server is going out of memory (OOM) to fix this situation you need to add 2GB SWAP memory instructions are in this link :
  12. Hi what is your server specs RAM, CPU etc. ? RUN below commands and send the output:- RAM check : `free -h` CPU core check : `nproc` DISK check : `df -h` Virtualization check : `virt-what`
  13. Sandeep B. replied to Ling's post in a topic in CWP - Control WEB Panel
    fix for 2fa is ready devs are testing it.
  14. Sandeep B. replied to Ling's post in a topic in CWP - Control WEB Panel
    I understand the frustration, please mail your comment to the head developer here `info@centos-webpanel.com` I already notified the developers multiple times but the fact is they are busy with more important fixes in cwp and 2fa fix is in there list.
  15. you should use it with Apache only as latest nginx is not compatible with pagespeed better to use script side js, css optimizer/plugin/module it will give you best performance
  16. And regarding new line error Add a new line and save the dns record. Simply hit enter button at the end of the file to give new line.
  17. Seems you've added the A record for acme remove that it is completely unnecessary. restart the dns server it will get started.
  18. In this situation remove the domain name from the txt name record so it will look like: _acme-challenge After restart the dns server. Also you don't need to add A record for the _acme-challenge
  19. Yes few minutes after restarting the dns server.
  20. After _acme-challenge.clovstore.com add dot It should be : _acme-challenge.clovstore.com. Then restart the bind/named dns server
  21. Hi can you send the screenshot of the dns in raw file edit format?
  22. In this tutorial I’ll provide you the steps to reset root password for MySQL 8.0 and MariaDB 10.4/10.xx/11.xx easily and efficiently. Since this are latest version of MySQL and fork mariadb you should do some extra caution during root password reset. Below are the easy steps to reset the root password. If you’re getting below error then it seems root password is not working or something bad happens to MySQL root user : ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) Lets get started with MySQL/mariadb root password reset :- First stop the MySQL/Mariadb service : systemctl stop mysqld mariadb mysql service mysqld stop / service mariadb stop Then you need to run the below command to start mysql with skip-grant-tables option : mysqld --skip-grant-tables --user=root & if upper user with root not work you can use below with mysql mysqld --skip-grant-tables --user=mysql & After running the above command press “Enter” Key or "ctrl+c" > to get the shell again Then you need to run mysql command and then run flush privileges command under MySQL CLI: mysql FLUSH PRIVILEGES; Then at last change the MySQL/Mariadb root password : ALTER USER 'root'@'localhost' IDENTIFIED BY 'root_passowrd'; Replace “root_password” with some password. then exit from MySQL cli by typing “quit“ Then run this command to kill all mysql processes : killall -u mysql or pkill -U mysql Ensure by running this command to unset environments if you accidentally set any : systemctl unset-environment MYSQLD_OPTS Now Stop and restart mysql systemctl stop mysql mysqld mariadb && systemctl start mysql mysqld mariadb service mysqld stop && service mysqld restart some time mysql/mariadb process are still running you need to kill them manually you can find the process via top command : top -u mysql if it is running then you need to kill the pid with kill -9 "pid no." and restart mysql/mariadb Thats it you’re done with root password reset for MySQL Check by logging into mysql root. CWP and for other control panels only : On control panel like cwp and other panel having /root/.my.cnf ensure you’ve updated the file with new root password which you changed it via upper command For CWP only update the new password in this files:
  23. CSF (ConfigServer Security & Firewall) is a popular firewall and security tool for Linux servers. CSF is full featured firewall which contains many features and works on Linux out of the box. Its a Stateful Packet Inspection (SPI) firewall, Login/Intrusion Detection and Security application for Linux servers. Here are some common commands that you can use with CSF: Start CSF: To start CSF, use the following command: csf -s you can also use systemctl to restart csf and lfd server systemctl start csf lfd Stop CSF: To stop CSF, use the following command: csf -x you can also use systemctl to restart csf and lfd server systemctl stop csf lfd Restart CSF: To restart CSF, use the following command: csf -r you can also use systemctl to restart csf and lfd server systemctl restart csf lfd Check CSF status: To check the status of CSF, use the following command: csf -status Allow an IP address: To allow an IP address through the firewall, use the following command: csf -a you can add the comment after the ip with space example : Unblock an IP address: To unblock an IP address that has been blocked by CSF, use the following command: csf -dr Block an IP address: To block an IP address, use the following command: csf -d you can add the comment after the ip with space example : View blocked IP addresses: To view a list of blocked IP addresses, use the following command: csf -g to find specific ip in blocked list use below command : Unblock all IP addresses: To unblock all IP addresses that have been blocked by CSF, use the following command: csf -df Check for updates to csf but do not upgrade : csf -c To update CSF : csf -u To Force update : csf -uf Get an IP’s information country of origin & hostname/ptr : csf -i IP usage : Hope this helped and you can add your own commands below in the comment to help others.