Sponsor:

Server and Web Integrator
Link:
Kloxo-MR logo
6.5.0 or 7.0.0
Click for "How to install"
Donation/Sponsorship:
Kloxo-MR is open-source.
Donate and or Sponsorship always welcome.
Click to:
Click Here
Please login or register. 2024-04-19, 22:13:36

Show Posts

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.


Messages - kuldeep verma

Pages: [1] 2
1
post has been updated with working urls

2
problem solved after update :) thanks dude.

3
in /etc/php-fpm.d there are only 2 files
1) admin.conf
2) default.conf

4
i cannot find a directory with name php-fpm in /etc :-/

5
Hello,

I am running nginx-proxy + php5.4 + php-fpm-event

today i ran yum update after which i started getting 500 internal error for all php files/webpages.

i tried running /script/fixphp and even sh /script/cleanup but still getting same error.

this error is only for php files/webpages.

Please help

6
i got this while updating one of my VPs installed with kloxo mr

[root@ks4002872 ~]# yum update
Loaded plugins: fastestmirror, priorities, protectbase, replace
Loading mirror speeds from cached hostfile
 * base: centos.mirrors.atwab.net
 * extras: centos.mirrors.atwab.net
 * mratwork-epel: epel.mirror.constant.com
 * mratwork-ius: mirror.symnds.com
 * rpmforge: repoforge.mirror.constant.com
 * updates: centos.mirrors.atwab.net
base                                                                                                                                             | 3.7 kB     00:00
dag                                                                                                                                              | 1.9 kB     00:00
extras                                                                                                                                           | 3.4 kB     00:00
mratwork-centalt                                                                                                                                 |  951 B     00:00
mratwork-epel                                                                                                                                    | 4.4 kB     00:00
mratwork-google-mod-pagespeed                                                                                                                    |  951 B     00:00
mratwork-ius                                                                                                                                     | 2.1 kB     00:00
mratwork-ius/primary_db                                                                                                                          | 131 kB     00:00
mratwork-litespeed                                                                                                                               |  951 B     00:00
mratwork-litespeed-update                                                                                                                        |  951 B     00:00
mratwork-release-neutral-arch                                                                                                                    | 1.9 kB     00:00
mratwork-release-neutral-arch/primary_db                                                                                                         | 1.1 kB     00:00
https://github.com/mustafaramadhan/kloxo/raw/rpms/release/neutral/x86_64/repodata/primary.sqlite.bz2: [Errno -1] Metadata file does not match checksum
Trying other mirror.
mratwork-release-neutral-arch/primary_db                                                                                                         | 1.1 kB     00:00
https://github.com/mustafaramadhan/kloxo/raw/rpms/release/neutral/x86_64/repodata/primary.sqlite.bz2: [Errno -1] Metadata file does not match checksum
Trying other mirror.
Error: failure: repodata/primary.sqlite.bz2 from mratwork-release-neutral-arch: [Errno 256] No more mirrors to try.
[root@ks4002872 ~]#

7
Kloxo-MR Bugs and Requests / Re: Unable to run yum upgrade
« on: 2014-04-13, 17:29:37 »
i got the same issue at one of my VPS

Tried the suggestion as well (Suggestion: run yum --enablerepo=mratwork-release-neutral-noarch clean metadata)

But not working :-/

8
Kloxo-MR Technical Helps / Re: yum update.
« on: 2014-04-13, 12:36:43 »
same thing happening with me.. i installed all updates one by one manually except  "php52s (5.2.17-12.mr.el5)" which installing dependency "mysql55-libs (5.5.36-1.ius.el6)"

Since the server is already having mysql-libs-5.5.34-1.el6.i686 hence its conflicting..

9
FFMPEG Auto installer for kloxo mr that installs FFmpeg, FFmpeg-php, Mplayer, Mencoder


- Tested at CentOS6 with php54 | CentOS6 with php53

Code: [Select]
wget http://apps.w3spot.com/library/ffmpeg/ffmpeg.w3spot
sh ./ffmpeg.w3spot

if you find any issue or bug reply in this thread i will try to fix..

10
Ok. thx

What i did is ->

Code: [Select]
cp ~lxcenter.conf.tpl custom.~lxcenter.conf.tpl
nano custom.~lxcenter.conf.tpl

and make such modifications

Code: [Select]
Timeout 150
KeepAlive <?php echo $keepalive?>

MaxKeepAliveRequests 100
KeepAliveTimeout 15

<IfModule prefork.c>
    StartServers 2
    MinSpareServers <?php echo $minspareservers?>
    MaxSpareServers <?php echo $maxspareservers?>
    ServerLimit 256
    MaxClients  512

    <IfVersion >= 2.4>
        MaxRequestWorkers <?php echo $maxspareservers?>
        MaxConnectionsPerChild <?php echo $maxrequestsperchild?>

    </IfVersion>
    <IfVersion < 2.4>
        MaxClients 512
        MaxRequestsPerChild <?php echo $maxrequestsperchild?>

    </IfVersion>
    MaxMemFree 2
    SendBufferSize 65536
    ReceiveBufferSize 65536
</IfModule>

<IfModule itk.c>
    StartServers 2
    MinSpareServers <?php echo $minspareservers?>
    MaxSpareServers <?php echo $maxspareservers?>
    ServerLimit      256
    MaxClients       512
    <IfVersion >= 2.4>
        MaxRequestWorkers <?php echo $maxspareservers?>
        MaxConnectionsPerChild <?php echo $maxrequestsperchild?>

    </IfVersion>
    <IfVersion < 2.4>
        MaxClients 256
        MaxRequestsPerChild <?php echo $maxrequestsperchild?>

    </IfVersion>
    MaxMemFree 2
    SendBufferSize 65536
    ReceiveBufferSize 65536
</IfModule>

<IfModule worker.c>
    StartServers 2
    MinSpareThreads <?php echo $minsparethreads?>
    MaxSpareThreads <?php echo $maxsparethreads?>
    ServerLimit      250
    MaxClients       512
    ThreadsPerChild 25
    <IfVersion >= 2.4>
        MaxRequestWorkers 150
        MaxConnectionsPerChild 0
    </IfVersion>
    <IfVersion < 2.4>
        MaxClients 250
        MaxRequestsPerChild 0
    </IfVersion>

    ThreadStackSize 8196
    MaxMemFree 2
    SendBufferSize 65536
    ReceiveBufferSize 65536
</IfModule>

<IfModule event.c>
    StartServers 2
    MinSpareThreads <?php echo $minsparethreads?>
    MaxSpareThreads <?php echo $maxsparethreads?>
    ServerLimit      250
    MaxClients       250
    ThreadsPerChild 25
    MaxRequestsPerChild 0
    ThreadStackSize 8196
    <IfVersion >= 2.4>
        MaxRequestWorkers 150
        MaxConnectionsPerChild 0
    </IfVersion>
    <IfVersion < 2.4>
        MaxClients 250
        MaxRequestsPerChild 0
    </IfVersion>

    SendBufferSize 65536
    ReceiveBufferSize 65536
</IfModule>

Include /home/apache/conf/defaults/*.conf
Include /home/apache/conf/domains/*.conf
Include /home/apache/conf/webmails/*.conf


restart it

Code: [Select]
top - 17:22:06 up 1 day,  2:57,  1 user,  load average: 0.03, 0.05, 0.01
but it's impossible to open any page on my websites.

Code: [Select]
[root@server tpl]# sh /script/sysinfo

A. Kloxo-MR: 6.5.0.f-2014013101

B. OS: CentOS release 5.10 (Final) i686

C. Apps:
   1. MySQL: mysql55-5.5.35-1.ius.el5
   2. PHP: php52-5.2.17-6.ius.centos5
   3. Httpd: httpd-2.2.26-1.el5
   4. Lighttpd: --uninstalled--
   5. Nginx: --uninstalled--
   6. Qmail: qmail-toaster-1.03-1.3.35.mr.el5
      - with: courier-imap-toaster-4.1.2-1.3.14.mr.el5
   7. Dns: bind-9.9.4-1.P2.el5

D. Php-type (for Httpd/proxy): mod_php_ruid2

E. Memory:
                total       used       free     shared    buffers     cached
   Mem:          3072       2125        946          0          0       1622
   -/+ buffers/cache:        502       2569
   Swap:            0          0          0

BTW, even 1 week ago this account work properly under Kloxo old panel :-(




Server limit  value should be greater than maxclient.

11
How to install SourceGuardian Loader for php5.3u at kloxoMR ?

12
Still same error...

- just 2-3 days back i was able to install without any error..
- Today i have tried more than 15 times (everytime fresh OS) with no luck..

Can you please try yourself at this server ? i can provide you SSH details.

13
did you made some changes ? :-/ as i have been doing the same from last 8 hours :D

14
Please look at below error m getting.. i have installed kloxo-mr successfully just 2-3days b4 but now its not getting installed at any of my VPS running CentOS5.9 32bit / CentOS5.9 64bit etc..

Here is the error i get at last:

Code: [Select]
mysqld: unrecognized service
mysqld: unrecognized service
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
Stop MySQL service...
mysqld: unrecognized service
MySQL ROOT password reset...
Start MySQL service...
mysqld: unrecognized service

Creating Vpopmail database...
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
Prepare /home/kloxo/httpd...
Create mysql.sock...
mysqld: unrecognized service
mksock: error making /var/lib/mysql/mysql.sock: No such file or directory
mysqld: unrecognized service
mysqld: unrecognized service
Setting Mysql for always running after reboot and restart now...
mysqld: unrecognized service
Unknown option. Use '-h' for help.
mysqld: unrecognized service
mysqld: unrecognized service
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
Stop MySQL service...
mysqld: unrecognized service
MySQL ROOT password reset...
Start MySQL service...
mysqld: unrecognized service
Could not Connect to Database on localhost using root user
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
Could not open database connection.
Run 'sh /script/restart-all' to make sure all services running well

[root@server /]# sh /script/restart-all
Already stopped.
Starting qmail-toaster: svscan.
Could not open database connection.Stopping kloxo-phpcgi:  [FAILED]
Starting kloxo-phpcgi:                                     [  OK  ]
Stopping kloxo-hiawatha:                                   [FAILED]
Starting kloxo-hiawatha: Error loading RSA private key (-0x2B00): X509 - Read/write of file failed
                                                           [FAILED]
[root@server /]#

15
Kloxo-MR Tips and Tricks / Re: DKIM signing in KloxoMR
« on: 2013-09-10, 01:57:28 »
Great !! Exactly what i was looking for.. i hope this will solve my issue..

Pages: [1] 2

MRatWork Affiliates:    BIGRAF(R) Inc.    House of LMAR    EFARgrafix

Page created in 0.069 seconds with 17 queries.

web stats analysis