[contribteam] [Bug 12401] NC27 recommends redis

2023-09-20 Thread bugzilla-daemon--- via contribteam
https://bugs.koozali.org/show_bug.cgi?id=12401

Jean-Philippe Pialasse  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

--- Comment #8 from Jean-Philippe Pialasse  ---
released

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 12401] NC27 recommends redis

2023-09-09 Thread bugzilla-daemon--- via contribteam
https://bugs.koozali.org/show_bug.cgi?id=12401

Jean-Philippe Pialasse  changed:

   What|Removed |Added

 Status|IN_PROGRESS |RESOLVED
 Resolution|--- |FIXED

--- Comment #7 from Jean-Philippe Pialasse  ---
in  smeserver-nextcloud-1.2.0/root/etc/e-smith/events/actions/nextcloud-conf
#Redis index File Cache
/usr/bin/occ config:system:set  redis host --value="localhost"
/usr/bin/occ config:system:set  redis port --value="6379"
/usr/bin/occ config:system:set  redis timeout --value="0.0"
/usr/bin/occ config:system:set  redis password --value=""
/usr/bin/occ config:system:set  memcache.locking --value="\OC\Memcache\Redis"
/usr/bin/occ config:system:set --type=bool --value=true filelocking.enabled


/usr/bin/plague-client build smeserver-nextcloud
smeserver-nextcloud-1_2_0-28_el7_sme contribs10
Package smeserver-nextcloud enqueued.  Job ID: 4156.

%changelog
* Sat Sep 09 2023 Jean-Philippe Pialasse  1.2.0-28.sme
- workaround opcache segfault with php 81 using in memory only [SME: 12298]
- index file cache using Redis [SME: 12401]

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 12401] NC27 recommends redis

2023-09-09 Thread bugzilla-daemon--- via contribteam
https://bugs.koozali.org/show_bug.cgi?id=12401

--- Comment #6 from John Crisp  ---
I noted that this is in the spec file:

touch 
root/etc/e-smith/templates/etc/opt/remi/php81/php.d/20-opcache.ini/template-begin

That should be safe_touch in the spec file?

How do we fix that?

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 12401] NC27 recommends redis

2023-09-08 Thread bugzilla-daemon--- via contribteam
https://bugs.koozali.org/show_bug.cgi?id=12401

John Crisp  changed:

   What|Removed |Added

 CC||jcr...@safeandsoundit.co.uk

--- Comment #5 from John Crisp  ---
FWIW installing smeserver-nextcloud-0:1.2.0-26 drags in php81-php-pecl-redis5

Should smeserver-redis be made a dep in smeserver-nextcloud?

This seems to work in the action conf script:

OCC "config:system:set  redis host --value='localhost'";
OCC "config:system:set  redis port --value='6379'";
OCC "config:system:set  redis timeout --value='0.0'";
OCC "config:system:set  redis password --value=''";
OCC "config:system:set  memcache.locking --value='\OC\Memcache\Redis'";
OCC "config:system:set --type=bool --value=true filelocking.enabled";

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 12401] NC27 recommends redis

2023-08-29 Thread bugzilla-daemon--- via contribteam
https://bugs.koozali.org/show_bug.cgi?id=12401

--- Comment #4 from Jean-Philippe Pialasse  ---
just 

yum install smeserver-redis --enablerepo=smecontribs -y
and then 


/usr/bin/occ config:system:set  redis host --value="localhost"
/usr/bin/occ config:system:set  redis port --value="6379"
/usr/bin/occ config:system:set  redis timeout --value="0.0"
/usr/bin/occ config:system:set  redis password --value=""
/usr/bin/occ config:system:set  memcache.locking --value="\OC\Memcache\Redis"
/usr/bin/occ config:system:set --type=bool --value=true filelocking.enabled

this could be added at the end of nextcloud-occ action script

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 12401] NC27 recommends redis

2023-08-18 Thread bugzilla-daemon--- via contribteam
https://bugs.koozali.org/show_bug.cgi?id=12401

Jean-Philippe Pialasse  changed:

   What|Removed |Added

 Status|RESOLVED|IN_PROGRESS
 Resolution|FIXED   |---

--- Comment #3 from Jean-Philippe Pialasse  ---
this is not enough

you will still have the message to do this

To use a memcache with Transactional File Locking, you must install the Redis
server and corresponding PHP module. After installing Redis you must enter a
configuration in your config.php file like this example:

'filelocking.enabled' => true,
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array(
 'host' => 'localhost',
 'port' => 6379,
 'timeout' => 0.0,
 'password' => '', // Optional, if not defined no password will be used.
  ),

https://docs.nextcloud.com/server/27/admin_manual/configuration_files/files_locking_transactional.html

so requires redis server and more tweaking on the side of config.php

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 12401] NC27 recommends redis

2023-08-17 Thread bugzilla-daemon--- via contribteam
https://bugs.koozali.org/show_bug.cgi?id=12401

Jean-Philippe Pialasse  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED

--- Comment #2 from Jean-Philippe Pialasse  ---
Tagged with: smeserver-nextcloud-1_2_0-25_el7_sme

/usr/bin/plague-client build smeserver-nextcloud
smeserver-nextcloud-1_2_0-25_el7_sme contribs10
Package smeserver-nextcloud enqueued.  Job ID: 4147.

%changelog
* Tue Aug 08 2023 Jean-Philippe Pialasse  1.2.0-25.sme
- make php81 compatible for NC 25 and higher [SME: 12298]
- requires php81-redis [SME: 12401]
- recognize need cpuinfo access [SME: 12339 ]
- remove simple signup link [SME: 12329]

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 12401] NC27 recommends redis

2023-08-17 Thread bugzilla-daemon--- via contribteam
https://bugs.koozali.org/show_bug.cgi?id=12401

--- Comment #1 from Jean-Philippe Pialasse  ---
might also need the service and contrib to be installed ?

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 12401] NC27 recommends redis

2023-08-17 Thread bugzilla-daemon--- via contribteam
https://bugs.koozali.org/show_bug.cgi?id=12401

Bug ID: 12401
   Summary: NC27 recommends redis
Classification: Contribs
   Product: SME Contribs
   Version: 10.0
  Hardware: ---
OS: ---
Status: CONFIRMED
  Severity: normal
  Priority: P3
 Component: smeserver-nextcloud
  Assignee: te...@pialasse.com
  Reporter: te...@pialasse.com
QA Contact: contribteam@lists.contribs.org
  Target Milestone: ---

(In reply to Gary Douglas from comment #9)
> fyi, NC27 recommends redis, warns if not installed
> 
> 050823 17:12:02 yum --enablerepo=smecontribs install smeserver-redis
> 050823 17:12:43 yum install php81-php-redis
> 
>   'filelocking.enabled' => true,
>   'memcache.locking' => '\\OC\\Memcache\\Redis',
>   'redis' => 
>   array (
> 'host' => 'localhost',
> 'port' => 6379,
> 'timeout' => 0.0,
> 'password' => '',
>   ),

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/