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-28, 00:23:27

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 - Viking

Pages: 1 2 3 [4] 5 6 ... 20
46
Kloxo-MR Technical Helps / Re: Error writing php.ini.
« on: 2013-08-18, 20:36:03 »
Quote from: "MRatWork"
If you found update php, need restart php-fpm or web server. Use 'sh /script/restart-web'. For to make sure, update web config 'sh /script/fixweb' before restart.
Mustafa I just did the standard update the 'yum update' which also update your updates. And so php.ini is changed when you change the value in advanced konfifuracji php Kloxo-MR. I did not change php.

47
Kloxo-MR Technical Helps / Re: Memory limit
« on: 2013-08-18, 20:31:11 »
Quote from: "MRatWork"
Check also '/etc/home/php-fpm/tpl/php53-fpm-pool.conf.tpl'
But it should take the value of the main settings in Kloxo php-MR.
You can also do a 'custom.php53-fpm-pool.conf.tpl'?

48
Kloxo-MR Technical Helps / Memory limit
« on: 2013-08-18, 08:04:19 »
Mustafa where to set the default memory limit for your server, clients, and each domain? Because the main settings for advanced configuration of PHP settings do not work. If there I set memory limit = 32MB it's still every newly created domain is created from memory limit = 64 MB.

49
Kloxo-MR Technical Helps / Error writing php.ini.
« on: 2013-08-18, 01:13:05 »
Mustafa on the previous update and now if Kloxo-MR change anything in the main settings of the server php php.ini is damaged and the server stops working. Look at the picture and damaged the /etc/ php.ini:

50
Quote from: "MRatWork"
Hi,

Latest upload using "if $(chkconfig --list|grep $item|grep -i ':on' >/dev/null 2>&1) && [ -f /etc/init.d/$item ] ; then" and previous using "if [ -f /etc/init.d/$item ] ; then".

That it.
That is supposed to be?
Code: [Select]
#!/bin/sh

list=(named djbdns maradns httpd nginx lighttpd hiawatha php-fpm qmail xinetd mysqld mysql kloxo)

for item in ${list[*]}
do
   if  [ -f /etc/init.d/$item ] ; then
      if [ $item == 'qmail' ] ; then
         /etc/init.d/$item stop
         /etc/init.d/$item start
      else
         /etc/init.d/$item restart
      fi
   fi
done

51
Quote from: "MRatWork"
Yes, the previous code only detect via 'if [ -f /etc/init.d/$item ] ; then'
Change: on the: wy??czone?
After the Polish "on" means "w??czony" not "wy??czony (off)".
If I change the Polish word "w??czony" or "wy??czony" works.
And why in the previous version and this does not work?

52
Quote from: "MRatWork"
The answer is simple.

See the code of restart-all:
Code: [Select]
#!/bin/sh

list=(named djbdns maradns httpd nginx lighttpd hiawatha php-fpm qmail xinetd mysqld mysql kloxo)

for item in ${list[*]}
do
if $(chkconfig --list|grep $item|grep -i ':on' >/dev/null 2>&1) && [ -f /etc/init.d/$item ] ; then
if [ $item == 'qmail' ] ; then
/etc/init.d/$item stop
/etc/init.d/$item start
else
/etc/init.d/$item restart
fi
fi
done
especially "chkconfig --list|grep $item|grep -i ':on" where '$item' is looping from list.

To know what service have exists detect with '-f /etc/init.d/$item' but not every service set as 'on' and then need latest detect with "chkconfig --list|grep $item|grep -i ':on".

This example for httpd in my server:
Code: [Select]
> chkconfig --list|grep httpd|grep -i ':on'
httpd           0:off 1:off 2:on 3:on 4:on 5:on 6:off
where httpd set as 'on' for runlevel 2,3,4 and 5.

Sadly, this info only for 'english' language.

In your server:
Code: [Select]
chkconfig --list|grep httpd
httpd           0:wy??czone     1:wy??czone     2:w??czone      3:w??czone     4:w??czone       5:w??czone      6:wy??czone
where ':on' is identical with 'wy??czone' and then script think no init need to restart.

For you, change ':on' to ':wy??czone' in '/script/restart-all' and '/usr/local/lxlabs/kloxo/pscript/restart-all'.

The same ways for other restart(s) like restart-web.

Better backup restart(s) files because update will be overwrite this files.
Mustafa knows how to fix this problem. Before updating to work properly.

53
Quote from: "MRatWork"
It's weird. Give me your ssh and kloxo-mr panel access. Send via pm.
I sent.
Please write when you're done.

54
Quote from: "MRatWork"
Try:
Code: [Select]
chkconfig mysql on
chkconfig httpd on
chkconfig nginx on
chkconfig qmail on
chkconfig named on
chkconfig kloxo on
Still does not work.

55
Quote from: "MRatWork"
inform here 'sh /script/sysinfo' to make sure fix for your issue.
Code: [Select]
# sh /script/sysinfo

A. Kloxo-MR: 6.5.0.f-2013081402

B. OS: CentOS release 6.4 (Final) x86_64

C. Apps:
   1. MySQL: MariaDB-server-10.0.3-1.x86_64
   2. PHP: php53u-5.3.27-1.ius.el6.x86_64
   3. Httpd: httpd-2.2.25-1.el6.x86_64
   4. Lighttpd: --uninstalled--
   5. Nginx: nginx-1.5.2-1.el6.x86_64
   6. Qmail: qmail-toaster-1.03-1.3.27.mr.el6.x86_64
      - with: courier-imap-toaster-4.1.2-1.3.14.mr.el6.x86_64
   7. Dns: bind-9.9.3-4.P2.el6.x86_64

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

E. Memory:
                total       used       free     shared    buffers     cached
   Mem:          1536       1265        270          0          0        349
   -/+ buffers/cache:        916        619
   Swap:          512          0        512

56
Quote from: "MRatWork"
Try again 'sh /script/cleanup' before running 'sh /script/restart-all'
Mustafa has already done three times this command and still does not work.
See post above for the results.

57
Quote from: "MRatWork"
Running' sh /script/cleanup' before 'sh /script/restart-all'.
Mustafa did so and did not work.
Code: [Select]
sh /script/restart
Stopping kloxo-phpcgi:                                     [  OK  ]
Starting kloxo-phpcgi:                                     [  OK  ]
Stopping kloxo-hiawatha:                                   [  OK  ]
Starting kloxo-hiawatha:                                   [  OK  ]
Code: [Select]
# sh /script/restart-all
#

58
Mustafa does not work after the update 'sh /script/restart-all'.

59
Kloxo-MR Technical Helps / Re: update installed wedmin
« on: 2013-08-14, 23:25:58 »
Mustafa but what is the Webmin? If I use Kloxo-MR is what he told me?
You can post in the forum when you spend new update and what it brings new because you never know when an update is not what makes a new or repaired.

60
Kloxo-MR Technical Helps / Re: You can not erase.
« on: 2013-08-13, 15:16:13 »
Quote from: "MRatWork"
Remember, '/var/named/chroot/etc/named.rfc1912.zones' is old dirs because latest KLoxo-MR all config inside '/home/bind'.

It's possible your system still have bind-chroot.
Mustafa to write a guide how and what to delete from your system, because you are doing more and more trash after each update.

Pages: 1 2 3 [4] 5 6 ... 20

Top 10 Social Networking:    Facebook    Twitter    LinkedIn    Pinterest    Google Plus    Tumblr    Instagram    VK    Flickr    Vine

Page created in 0.046 seconds with 17 queries.

web stats analysis