This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Pages: 1 [2]
16
CentOS 6 Problems / Re: Swap and Cron Jobs
« on: October 20, 2017, 12:19:50 AM »
Thanks, but I'm not as familiar with the commands to pull that info except the TOP and that didn't give much info.
17
CentOS 6 Problems / Swap and Cron Jobs
« on: October 13, 2017, 12:15:42 AM »
Hi Everyone.
System Info:
CPU Model: QEMU Virtual CPU version (cpu64-rhel6)
CPU Details: 2 Core (2100 MHz)
Ram 3 Gig
Distro Name: CentOS release 6.9 (Final)
Kernel Version: 2.6.32-696.10.2.el6.x86_64
Platform: x86_64 [kvm]
Issue: Swap keeps overloading after a couple of days uptime. I put in a cron to turn off and on the swap to clear it but the cron does not appear to be running. So the issue is two fold. Swap getting full after two days and cron not working. Any ideas?
Cron added through the control panel - Crontab
Thanks,
Doug
System Info:
CPU Model: QEMU Virtual CPU version (cpu64-rhel6)
CPU Details: 2 Core (2100 MHz)
Ram 3 Gig
Distro Name: CentOS release 6.9 (Final)
Kernel Version: 2.6.32-696.10.2.el6.x86_64
Platform: x86_64 [kvm]
Issue: Swap keeps overloading after a couple of days uptime. I put in a cron to turn off and on the swap to clear it but the cron does not appear to be running. So the issue is two fold. Swap getting full after two days and cron not working. Any ideas?
Cron added through the control panel - Crontab
Thanks,
Doug
18
CentOS 6 Problems / Re: HTTPD Issues - Will not start - RESOLVED
« on: August 30, 2017, 12:18:35 AM »Code: [Select]
Figured it out!
edited /usr/local/apache/conf.d/ssl.conf and add this into it
Code: [Select]
<IfModule !ssl_module>
LoadModule ssl_module modules/mod_ssl.so
</IfModule>
httpd works now and was able to auto the ssl on the other addon domain that I had been working on.
Thanks! Would not have been able to get it fixed without your help.
19
CentOS 6 Problems / Re: HTTPD Issues - Will not start
« on: August 30, 2017, 12:05:20 AM »
Ran the three commands and still getting the following when trying to run HTTPD
Code: [Select]
Starting httpd: AH00526: Syntax error on line 2 of /usr/local/apache/conf.d/ssl.conf:
Invalid command 'SSLProtocol', perhaps misspelled or defined by a module not included in the server configuration
[FAILED]
20
CentOS 6 Problems / Re: HTTPD Issues - Will not start
« on: August 29, 2017, 09:29:48 AM »
Okay, that got a little further. Now there is another error coming up:
Pulled the file and:
Code: [Select]
Starting httpd: AH00526: Syntax error on line 2 of /usr/local/apache/conf.d/ssl.conf:
Invalid command 'SSLProtocol', perhaps misspelled or defined by a module not included in the server configuration
[FAILED]
Pulled the file and:
Code: [Select]
Listen 443
SSLProtocol All -SSLv2 -SSLv3
SSLHonorCipherOrder on
SSLCipherSuite ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:E$
NameVirtualHost 23.111.69.102:443
21
CentOS 6 Problems / HTTPD Issues - Will not start
« on: August 29, 2017, 02:03:29 AM »
Hi all,
I have run into a problem with httpd not starting, even after reboots. When I try to start it I get the following error
The httpd.conf have 499 lines and the last ones are these
here's the suphp.conf
Business server is down right now. Any help would be appreciated.
I have run into a problem with httpd not starting, even after reboots. When I try to start it I get the following error
Code: [Select]
Starting httpd: httpd: Syntax error on line 499 of /usr/local/apache/conf/httpd.conf: Syntax error on line 1 of /usr/local/apache/conf.d/suphp.conf: Cannot load modules/mod_suphp.so into server: /usr/local/apache/modules/mod_suphp.so: undefined symbol: ap_log_rerror
[FAILED]
The httpd.conf have 499 lines and the last ones are these
Code: [Select]
ExtendedStatus On
Include /usr/local/apache/conf/sharedip.conf
Include /usr/local/apache/conf.d/*.conf
here's the suphp.conf
Code: [Select]
LoadModule suphp_module modules/mod_suphp.so
suPHP_Engine on
AddType application/x-httpd-php .php5 .php4 .php .php3 .php2 .phtml
<Directory />
suPHP_AddHandler application/x-httpd-php
</Directory>
#suPHP_UserGroup nobody nobody
suPHP_AddHandler application/x-httpd-php44
suPHP_AddHandler application/x-httpd-php52
suPHP_AddHandler application/x-httpd-php53
suPHP_AddHandler application/x-httpd-php54
suPHP_AddHandler application/x-httpd-php55
suPHP_AddHandler application/x-httpd-php56
suPHP_AddHandler application/x-httpd-php7
Business server is down right now. Any help would be appreciated.
22
SSL / Re: Getting error when requesting SSL cert
« on: August 29, 2017, 12:49:05 AM »
Trying to find the issue with the redirect but nothing:
Code: [Select]
# vhost_start scriptophobia.com
<VirtualHost 23.111.69.102:80>
ServerName scriptophobia.com
# This line was added for HTTPS load
#RedirectMatch permanent ^(.*)$ https://%domain_name$1
# End of added line
ServerAlias www.scriptophobia.com
ServerAdmin ***@gmail.com
DocumentRoot "/home/***/public_html/scriptophobia"
ScriptAlias /cgi-bin/ /home/***/public_html/scriptophobia/cgi-bin/
#
# Custom settings are loaded below this line (if any exist)
# Include "/usr/local/apache/conf/userdata/***/scriptophobia.com/*.conf
<IfModule mod_suexec.c>
SuexecUserGroup daowenpu daowenpu
</IfModule>
<IfModule mod_suphp.c>
suPHP_UserGroup daowenpu daowenpu
</IfModule>
<Directory "/home/***/public_html/scriptophobia">
AllowOverride All
</Directory>
</VirtualHost>
# vhost_end scriptophobia.com
23
SSL / Re: Getting error when requesting SSL cert
« on: August 26, 2017, 01:31:00 PM »
Thanks for the direction. Unfortunately, there are no redirects in the .htaccess file.
The redirect showing is just the script I think, that says sub the domain name of the %25domain_name for I remember seeing it on the other sites on the host.
The redirect showing is just the script I think, that says sub the domain name of the %25domain_name for I remember seeing it on the other sites on the host.
24
SSL / Getting error when requesting SSL cert
« on: August 26, 2017, 02:00:44 AM »Code: [Select]
AutoSSL Issue Failed![Fri Aug 25 18:50:57 PDT 2017] Single domain='********.com'
[Fri Aug 25 18:50:57 PDT 2017] Getting domain auth token for each domain
[Fri Aug 25 18:50:57 PDT 2017] Getting webroot for domain='********.com'
[Fri Aug 25 18:50:57 PDT 2017] Getting new-authz for domain='********.com'
[Fri Aug 25 18:50:59 PDT 2017] The new-authz request is ok.
[Fri Aug 25 18:50:59 PDT 2017] Verifying:********.com
[Fri Aug 25 18:51:02 PDT 2017] scriptophobia.com:Verify error:Fetching https://%25domain_name/.well-known/acme-challenge/ppUJQh7OK3dBKL0AuoH9pMaGqwhaKkBDCZZvdm9Ajb0: Error getting validation data
[Fri Aug 25 18:51:02 PDT 2017] Please check log file for more details: /root/.acme.sh/acme.sh.log
AutoSSL Issue Failed![Fri Aug 25 18:51:03 PDT 2017] Single domain='********.com'
[Fri Aug 25 18:51:03 PDT 2017] Getting domain auth token for each domain
[Fri Aug 25 18:51:03 PDT 2017] Getting webroot for domain='********.com'
[Fri Aug 25 18:51:03 PDT 2017] Getting new-authz for domain='********.com'
[Fri Aug 25 18:51:05 PDT 2017] The new-authz request is ok.
[Fri Aug 25 18:51:05 PDT 2017] Verifying:********.com
[Fri Aug 25 18:51:09 PDT 2017] ********.com:Verify error:Fetching https://%25domain_name/.well-known/acme-challenge/HzLmq5WubNNwCv8JaeibUmrSwsXSxU4nyL3HFtTxlHU: Error getting validation data
[Fri Aug 25 18:51:09 PDT 2017] Please check log file for more details: /root/.acme.sh/acme.sh.log
Already have several certs for other domains so I know it is working. Any ideas?
25
SSL / Re: AutoSsl installation failed!
« on: August 22, 2017, 10:57:39 PM »Code: [Select]
AutoSSL Issue Failed![Tue Aug 22 15:28:56 PDT 2017] Single domain='XXXXXXXX.com'
[Tue Aug 22 15:28:56 PDT 2017] Getting domain auth token for each domain
[Tue Aug 22 15:28:56 PDT 2017] Getting webroot for domain='XXXXXXXX.com'
[Tue Aug 22 15:28:56 PDT 2017] Getting new-authz for domain='XXXXXXXX.com'
[Tue Aug 22 15:28:58 PDT 2017] The new-authz request is ok.
[Tue Aug 22 15:28:58 PDT 2017] Verifying:XXXXXXXX.com
[Tue Aug 22 15:29:00 PDT 2017] XXXXXXXXX.com:Verify error:Fetching https://%25domain_name/.well-known/acme-challenge/08pfIvj0dhi-cESnOP_JZOKUyf0VcXqygwFDyoGUk68: Error getting validation data
[Tue Aug 22 15:29:00 PDT 2017] Please check log file for more details: /root/.acme.sh/acme.sh.log
AutoSSL Issue Failed![Tue Aug 22 15:29:01 PDT 2017] Single domain='XXXXXXXX.com'
[Tue Aug 22 15:29:01 PDT 2017] Getting domain auth token for each domain
[Tue Aug 22 15:29:01 PDT 2017] Getting webroot for domain='XXXXXXXX.com'
[Tue Aug 22 15:29:01 PDT 2017] Getting new-authz for domain='XXXXXXXX.com'
[Tue Aug 22 15:29:03 PDT 2017] The new-authz request is ok.
[Tue Aug 22 15:29:03 PDT 2017] Verifying:XXXXXXXX.com
[Tue Aug 22 15:29:05 PDT 2017] XXXXXXXX.com:Verify error:Fetching https://%25domain_name/.well-known/acme-challenge/PcCs4ForfBct9Z2jgWXjKvZFRbF6CchIUMMYbGcg8Nw: Error getting validation data
[Tue Aug 22 15:29:05 PDT 2017] Please check log file for more details: /root/.acme.sh/acme.sh.log
Getting this response from Auto SSL. Running pro version.
Any ideas?
Pages: 1 [2]