
Sandeep B.
Administrators
-
Joined
-
Last visited
-
Currently
Viewing Topic: How to add Swap memory in Linux OS CentOS Ubuntu Debian CWP HestiaCP
Everything posted by Sandeep B.
-
How to enable pgAdmin?
try this : cd /usr/local/cwpsrv/var/services yum install cwpPgphp -y yum reinstall cwpPgphp -y mv phpPgAdmin phpPgAdmin.bak wget https://github.com/phppgadmin/phppgadmin/releases/download/REL_7-13-0/phpPgAdmin-7.13.0.zip unzip phpPgAdmin-7.13.0.zip mv phpPgAdmin-7.13.0 phpPgAdmin rm -rf phpPgAdmin-7.13.0.zip
-
Custom templates for hostname.conf and hostname-ssl.conf
hi why do you want to change the hostname template ? are you hosting anything on the hostname subdomain?
-
View sites PHP version
Hi currently there is no way but you can search the config in .conf under user account with grep
-
Install PHP 8.3 via CWP
can you audit whole log for any other errors
-
Install and Build PHP 8.3 in CWP - Control WEB Panel from Source
please check the PHP build log for any error also if you've low RAM the PHP will fail add a swap to your OS and retry
-
504 gateway time-out phpmyadmin
HI, strangely, you're getting timeout for such a small file. I've tested the CWP PMA (root and user) and didn't find the issue. Can you show us some screenshots of the error with your URL?
-
How to fix GPG key error occurred during the signature verification DEB.SURY.ORG in Ubuntu/Debian
Fix the GPG key error EXPKEYSIG B188E2B695BD4743 DEB.SURY.ORG Automatic Signing Key <deb@sury.org> The DEB.SURY.ORG Debian/ubuntu package repository has changed its package signing key. By running the below commands will fix the issue : rm -rf /etc/apt/sources.list.d/php.list apt-get update apt-get -y install lsb-release ca-certificates curl rm -rf /tmp/debsuryorg-archive-keyring.deb curl -sSLo /tmp/debsuryorg-archive-keyring.deb https://packages.sury.org/debsuryorg-archive-keyring.deb dpkg -i /tmp/debsuryorg-archive-keyring.deb sh -c 'echo "deb [signed-by=/usr/share/keyrings/deb.sury.org-php.gpg] https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' apt-get update then again run apt update command and upgrade command : apt-get update apt-get upgrade
-
CWP Apache Enable HTTP/2 with mod_http2 module - Control Web Panel
wait for cwp el9 it will be released soon if you want to upgrade you can use centos 8 stream or alamalinux 8
-
CWP Apache Enable HTTP/2 with mod_http2 module - Control Web Panel
not yet i think the issue is with openssl you can downgrade the version and check
-
Recommended web server setup
nginx + apache will give you more performance and cache are managed automatically you don't need to clear it
-
AutoSSL stopped working
renewal cron is listed below : /root/.acme.sh/acme.sh --cron --home /root/.acme.sh/cwp_certs > /dev/null
-
Update CWP RoundCube Mail Version 1.5.8 – Control Web Panel
thanks @Dutch_Mike typo fixed
-
Install and Build PHP 8.3 in CWP - Control WEB Panel from Source
which OS version you're using el7 or el8 ?
-
Tomcat server set up - User Panel access issue
seems something wrong can you send the screenshot of the feature manager ?
-
Reseller package update in CWP pro from clientexec not working - API set up
you can check here https://docs.control-webpanel.com/docs/developer-tools/api-manager/functions/function-api-account/add $data = array(“key” => “MYKEY”,”action”=>’add’, ”domain”=>’MY_DOMAIN’, ”user”=>’USER’, ”pass”=>’PASSWORD’, ”email”=>’email@account’, ”package”=>’PACKAGE_NAME’, ”inode”=>’0’,”limit_nproc”=>’40’,”limit_nofile”=>’0’,”server_ips”=>’MY_IP_SERVER’); $url = “https://IPSERVERAPI:2304/v1/account”; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, “POST”); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt ($ch, CURLOPT_POSTFIELDS, http_build_query($data)); curl_setopt ($ch, CURLOPT_POST, 1); $response = curl_exec($ch); curl_close($ch);
-
Best Hosting providers for CWP - Control Web Panel
i had a very bad experience with DO they are overloaded and sometime server network sucks
-
Tomcat server set up - User Panel access issue
in settings did you enable the option available for user?
-
Backup Remote Sync ith Hetzner Storage box
then you need to use scp to transfer files scp -P 23 /path/of/the/source/backupfile.zip username@backup_server_hostname:/path/of/the/backup/directory/
-
Backup Remote Sync ith Hetzner Storage box
to use rsync both source and destination servers should have the rsync package installed.
-
secure and top performance config for /etc/nginx/nginx.conf
hi replace these lines : worker_rlimit_nofile 65535; worker_connections 5000; final config : user nobody; worker_processes auto; worker_rlimit_nofile 65535; error_log /var/log/nginx/error.log crit; pid /var/run/nginx.pid; events { worker_connections 5000; use epoll; multi_accept on; } http { sendfile on; tcp_nopush on; tcp_nodelay on; client_header_timeout 3m; client_body_timeout 3m; client_max_body_size 256m; client_header_buffer_size 4k; client_body_buffer_size 256k; large_client_header_buffers 4 32k; send_timeout 3m; keepalive_timeout 60 60; reset_timedout_connection on; server_names_hash_max_size 1024; server_names_hash_bucket_size 1024; ignore_invalid_headers on; connection_pool_size 256; request_pool_size 4k; output_buffers 4 32k; postpone_output 1460; include mime.types; default_type application/octet-stream; # Compression gzip gzip on; gzip_vary on; gzip_disable "MSIE [1-6]\."; gzip_proxied any; gzip_min_length 512; gzip_comp_level 6; gzip_buffers 8 64k; gzip_types text/plain text/xml text/css text/js application/x-javascript application/xml image/png image/x-icon image/gif image/jpeg image/svg+xml application/xml+rss text/javascript application/atom+xml application/javascript application/json application/x-font-ttf font/opentype; # Proxy settings proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_pass_header Set-Cookie; proxy_connect_timeout 300; proxy_send_timeout 300; proxy_read_timeout 300; proxy_buffers 32 4k; proxy_cache_path /var/cache/nginx levels=2 keys_zone=cache:10m inactive=60m max_size=512m; proxy_cache_key "$host$request_uri $cookie_user"; proxy_temp_path /var/cache/nginx/temp; proxy_ignore_headers Expires Cache-Control; proxy_cache_use_stale error timeout invalid_header http_502; proxy_cache_valid any 1d; open_file_cache_valid 120s; open_file_cache_min_uses 2; open_file_cache_errors off; open_file_cache max=5000 inactive=30s; open_log_file_cache max=1024 inactive=30s min_uses=2; # SSL Settings ssl_session_cache shared:SSL:10m; ssl_protocols TLSv1.2; ssl_prefer_server_ciphers on; ssl_ciphers "EECDH+ECDSA+AESGCM:EECDH+aRSA+AESGCM:EECDH+ECDSA+SHA384:EECDH+ECDSA+SHA256:EECDH+aRSA+SHA384:EECDH+aRSA+SHA256:EECDH+aRSA!RC4:EECDH:!RC4:!aNULL:!eNULL:!LOW:!3DES:!MD5:!EXP:!PSK:!SRP:!DSS"; # Logs log_format main '$remote_addr - $remote_user [$time_local] $request ' '"$status" $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; log_format bytes '$body_bytes_sent'; #access_log /var/log/nginx/access.log main; access_log off; # Cache bypass map $http_cookie $no_cache { default 0; ~SESS 1; ~wordpress_logged_in 1; } # Include additional configuration include /etc/nginx/cloudflare.inc; include /etc/nginx/conf.d/*.conf; }
-
secure and top performance config for /etc/nginx/nginx.conf
Hi what you're looking specifically?
-
CWP Apache Enable HTTP/2 with mod_http2 module - Control Web Panel
will check what is the issue exactly
-
PHP Defender using Snuffleupagus
hi will be soon added to cwp seems they added the support for php 8.2
-
Email delivery
any error you're getting here ?
-
Upgrade openssl
on enterprise linux don't upgrade openssl as this will break the system dependecies