Changes

From SME Server
Jump to navigationJump to search
13,225 bytes added ,  22:33, 15 June 2016
Line 1: Line 1: −
http://wiki.contribs.org/SME_Server:Documentation:QA:Verification
+
http://fedoranews.org/tchung/rpmbuild/
*ajouter un utilisateur
+
 
  db accounts setprop toto Shell /bin/bash
+
http://forums.contribs.org/index.php/topic,50158.0/topicseen.html perl -e "use esmith::util;esmith::util::setUserPassword( 'username', 'password');";  /sbin/e-smith/signal-event  password-modify username
  signal-event user-modify toto
+
 
*empecher indexer repertoire
+
http://forums.contribs.org/index.php/topic,50141.0.html
  db accounts setprop toto Indexes disabled
+
Advice/fr
  signal-event ibay-modify toto
+
 
*PWD=$(cat /etc/ldap.secret)
+
de epel il y a bugzilla, cacti, gallery2, mediawiki, nagios, zaraf, moodle, ocsinventory, roundcube, wordpress et zabbix
* yum --enablerepo smecontribs install cgminer
+
 
 +
voir smeserver-mediawiki.src.rpm smeserver-kplaylist.src.rpm smeserver-groupoffice smeserver-wordpress
 +
 
 +
faire contrib smf  typo3 phpbb
 +
tester  smeserver-user-webspace a user web space
 +
 
 +
 
 +
smeserver-dar2 pour le panel
 +
====cvs make a new source====
 +
 
 +
cd smecontribs/rpms/smeserver-rkhunter
 +
rm -rf contribs8
 +
cvs update -dPA
 +
-> test si branch a construire existe -> arret
 +
cp -R contribs8/ contribs9
 +
rm -rf contribs9/CVS/
 +
cvs add contribs9
 +
cd contribs9
 +
make prep
 +
mv smeserver-rkhunter-1.2.0 smeserver-rkhunter-1.4.0
 +
rm -rf *.patch
 +
tar cvzf smeserver-rkhunter-1.4.0.tar.gz smeserver-rkhunter-1.4.0
 +
#or tar -Jcvf  smeserver-rkhunter-1.4.0.tar.xz smeserver-rkhunter-1.4.0
 +
date +%s > import.log
 +
make new-sources FILES="smeserver-rkhunter-1.4.0.tar.gz"
 +
cvs add .cvsignore *.spec Makefile import.log sources
 +
 +
-> remove Patch and %patch
 +
 +
cvs commit -m '* Thu Aug 13 2015 stephane de Labrusse <stephdl@de-labrusse.fr> 1.4.0-1.sme
 +
- First Import to contribs9'
 +
 
 +
====plague-client====
 +
http://buildsys.koozali.org/build/10/smeserver-core/x86_64/plague/0.4.5.8-2.el7.sme/noarch/plague-common-0.4.5.8-2.el7.sme.noarch.rpm
 +
http://buildsys.koozali.org/build/10/smeserver-core/x86_64/plague/0.4.5.8-2.el7.sme/noarch/plague-client-0.4.5.8-2.el7.sme.noarch.rpm
 +
 
 +
====SOGO3====
 +
db yum_repositories set sogo3 repository \
 +
    BaseURL http://inverse.ca/rhel-v3/6/\$basearch \
 +
    EnableGroups yes \
 +
    GPGCheck no \
 +
    Name "Inverse SOGo Repository" \
 +
    IncludePkgs gnustep-base,libmemcached,libwbxml,sogo*,sope49* \
 +
    Visible yes \
 +
    status disabled
 +
====Testspeed====
 +
http://speedof.me/
 +
 
 +
====Find upstream rpms patched by contribs.org====
 +
For the need of the distribution we ought to patch some upstream rpms, this is the list
 +
rpm -qa --qf "%{name} %{BuildHost}\n" | grep -P 'build64\-1|builder.koozali.org' | awk '{print $1}' | grep -vP '^smeserver|e\-smith' | sort
 +
 
 +
====Mock configuration & scl build ====
 +
http://people.centos.org/hughesjr/scl_examples/
 +
http://grokbase.com/t/centos/centos/142tg0hrmw/how-to-build-scl-python-setuptools-from-src-rpm
 +
 
 +
====remove the degraded raid====
 +
mdadm --grow /dev/md0 --force --raid-devices=1
 +
 
 +
====Using Simple "Wildcards" and "Repetitions"====
 +
Calling these "wildcards" may actually conflict with the theoretical grammar and syntax of Perl, but in fact is the most intuitive way to think of it, and will not lead to any coding mistakes.
 +
 
 +
.  Match any character
 +
\w  Match "word" character (alphanumeric plus "_")
 +
\W  Match non-word character
 +
\s  Match whitespace character
 +
\S  Match non-whitespace character
 +
\d  Match digit character
 +
\D  Match non-digit character
 +
\t  Match tab
 +
\n  Match newline
 +
\r  Match return
 +
\f  Match formfeed
 +
\a  Match alarm (bell, beep, etc)
 +
\e  Match escape
 +
\021  Match octal char ( in this case 21 octal)
 +
\xf0  Match hex char ( in this case f0 hexidecimal)
 +
 
 +
You can follow any character, wildcard, or series of characters and/or wildcard with a repetiton. Here's where you start getting some power:
 +
 
 +
*      Match 0 or more times
 +
+      Match 1 or more times
 +
?      Match 1 or 0 times
 +
{n}    Match exactly n times
 +
{n,}  Match at least n times
 +
{n,m}  Match at least n but not more than m times
 +
 
 +
Now for some examples:
 +
 
 +
$string =~ m/\s*rem/i;  #true if the first printable text is rem or REM
 +
 
 +
$string =~ m/^\S{1,8}\.\S{0,3}/;  # check for DOS 8.3 filename
 +
                                  #  (note a few illegals can sneak thru)
 +
 
 +
====search about db in template====
 +
grep -srni '${[A-Za-z0-9]\|$[A-Za-z0-9]\|_prop' /etc/e-smith/templates*| grep '}\|_prop' |less
 +
or
 +
grep -srni '${[A-Za-z0-9]\|$[A-Za-z0-9]\|_prop' /etc/e-smith/templates*| grep '} |\|}|\|_prop' |less
 +
 
 +
====70-persistent-net.rules====
 +
[root@sme9 ~]# locate 70-persistent
 +
/etc/udev/rules.d/70-persistent-net.rules
 +
[root@sme9 ~]# cat /etc/udev/rules.d/70-persistent-net.rules
 +
# This file was automatically generated by the /lib/udev/write_net_rules
 +
# program, run by the persistent-net-generator.rules rules file.
 +
#
 +
# You can modify it, as long as you keep each rule on a single
 +
# line, and change only the value of the NAME= key.
 +
 +
# PCI device 0x8086:0x100e (e1000)
 +
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="08:00:27:94:a1:2c", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
 +
 
 +
====upgrade horde5 for sme9====
 +
http://forums.contribs.org/index.php?topic=50969.0
 +
 
 +
====iso2utf8====
 +
 
 +
iconv -f iso-8859-1 -t utf-8 fichier_src > fichier_dst
 +
 
 +
====smartd_supervision====
 +
http://lika.be/wp/2006/02/adding-the-smartd-service-to-sme-server/<br />
 +
 
 +
http://wiki.contribs.org/Monitor_Disk_Health
 +
 
 +
====migration_script_sme8tosme9====
 +
you need to move the impacted perl module file in order to have this contrib to work.
 +
 
 +
please do not open a bug for every contribs with this kind of error, as it should be part of the normal migration process:
 +
http://bugs.contribs.org/show_bug.cgi?id=8137
 +
 
 +
contribname="password"
 +
version8="1.2"
 +
version9="1.3"
 +
tar -xzf smeserver-$contribname-$version8.tgz
 +
mkdir smeserver-$contribname-$version9
 +
cp -rp smeserver-$contribname-$version8/* smeserver-$contribname-$version9/
 +
mv -r  smeserver-$contribname-$version8/root/usr/lib/perl5/site_perl/esmith/*  smeserver-$contribname-$version9/root/usr/share/perl5/vendor_perl/esmith/
 +
tar -czf smeserver-$contribname-$version9.tgz smeserver-$contribname-$version9
 +
 
 +
====Netlogon probleme W7 W8?
 +
A tester sur w7 et W8
 +
http://forums.contribs.org/index.php/topic,50046.msg250942.html
 +
I confirm,
 +
i'm referring to the automatically mapped home drive in Windows XP. the above drive doesn't show in Windows 7 without editing the netlogon.bat file.
 +
i've deleted the REM in the line about "net use z: /home" and then it's ok.
 +
Now it works fine.
 +
Thanks to all for the help. i'm trying sme server 8 since few months.
 +
====different wiki syntax====
 +
{| style="color:red;background-color:#ffffcc;"
 +
|
 +
[Please see [[Help:Contents#How_to_get_a_wiki_account.3F|'''how to get a wiki account''']] ]
 +
|}
 +
 
 +
<syntaxhighlight lang="Bash">
 +
plop
 +
plop
 +
plop
 +
</syntaxhighlight>
 +
====daniel_vroom====
 +
https://vroom.firewall-services.com/
 +
 
 +
https://github.com/dani/vroom
 +
 
 +
====buildsys====
 +
 
 +
*If the package was available from upstream and it is to be included in our distro then it just needs copying on the buildsys, for instance this is how I added perl-Taint-Util
 +
 
 +
cp /mirrors/rpmforge/redhat/el6/en/i386/dag/RPMS/perl-Taint-Util-0.08-1.el6.rf.i686.rpm /build/smeserver/repo/testing/9/smetest/i386/RPMS/
 +
 
 +
*Releasing a contrib package
 +
After the make build command the build system will try and build your package. After a successful build it will be put in the smetest repository. You should be notified of the result of the build by e-mail.
 +
 
 +
Once a package is build successfully you should verify your changes, ideally you would have a bug to verify for each modification. After verification of all relevant changes and bugs you can release the package like this:
 +
<ol></li><li>Login to shell.contribs.org like this:
 +
 
 +
ssh username@shell.contribs.org
 +
</li><li>Navigate to the teams directory:
 +
 
 +
cd /teams
 +
</li><li>The teams directory contains a few directories of which two are relevant, the first is called updates which will hold the SME Server packages, the other is called contribs and will hold build contribs.
 +
Suppose we would like to release our contrib we would proceed like this:
 +
 
 +
cd contribs/7
 +
</li><li>Now copy the relevant package from smetest to smecontribs, old versions are removed automatically
 +
 
 +
cp smetest/package-name-version.rpm smecontribs/
 +
</li></ol>
 +
 
 +
{{Note box|Within a period of two hours the package should be moved to the smecontribs repository and be available as soon as the mirrors synchronize.}}
 +
 
 +
Once the server successfully builds it will automatically be pulled on the next repo update run
 +
(40 past the even hours MDT). The package will either be put into the smedev (new package) or smetest (exist in higher repo)  After verification the package is manually moved from smedev/smetest to smecontribs (for contribs)  or smeupdates-testing (for packages in base)
 +
 
 +
====cours perl====
 +
http://www.dil.univ-mrs.fr/~chris/Perl/Generalites.htm
 +
http://fr.openclassrooms.com/informatique/cours/apprenez-a-programmer-en-perl
 +
==== phpinfo ====
 +
set a file phpinfo.php
 +
 
 +
<?php   
 +
  phpinfo();   
 +
?>
 +
755 and www:www
 +
 
 +
==== php55 ====
 +
 
 +
http://forums.contribs.org/index.php/topic,50585.msg254867.html#msg254867
 +
 
 +
remi forums
 +
http://forums.famillecollet.com/viewtopic.php?pid=6841#p6841
 +
[root@sme9 ~]# yum --enablerepo=remi-php55,remi,epel update php\* --exclude=php-horde-horde\*
 +
http://forums.contribs.org/index.php/topic,50582.msg256351.html#msg256351
 +
https://access.redhat.com/site/documentation/en-US/Red_Hat_Software_Collections/ ???
 +
====Log====
 +
=====Quick Parse of Log=====
 +
a quick parse of your log, but you should read the entire log
 +
less  /var/log/messages| grep -iE "uninitialized|WARNING|ERROR"
 +
=====Deep parse Log to find errors=====
 +
When you want to test the SME Product it can be useful to see what it occurs
 +
This CL can help you, but you should read the entire log
 +
less  /var/log/messages| grep -iE "useless|uninitialized|warn|fail|error|disable|unable|exit"
 +
of course this is for the /var/log/messages
 +
 
 +
=====Parse all Logs to find errors=====
 +
Parse all logs and write (under /root) the output to a text file named with the date of day. For example log012214:
 +
 
 +
find /var/log/ -mtime -2 -print -exec sh -c 'cat "{}" | tai64nlocal | egrep -i "useless|warn|fail|error|disable|remov|unable|exit"' \; > "log$(date +'%m%d%y')" 2>&1
 +
then:
 +
cd /root
 +
less log012214
 +
 
 +
or this one lighter
 +
 
 +
find /var/log/ -mtime -2 -print -exec sh -c 'cat "{}" | tai64nlocal | egrep -i "uninitialized|WARNING|ERROR"' \; > "log$(date +'%m%d%y')" 2>&1
 +
==== Creating and starting service ====
 +
ln -f -s /etc/rc.d/init.d/e-smith-service /etc/rc7.d/S98popfile
 +
/sbin/e-smith/db configuration set popfile service status enabled
 +
/sbin/e-smith/signal-event remoteaccess-update
 +
service popfile start
 +
 
 +
==== Deleting and unregistering service ====
 +
service popfile stop
 +
sleep 3
 +
rm -f /etc/rc7.d/S98popfile
 +
rm -f /etc/rc.d/init.d/popfile
 +
/sbin/e-smith/config delete popfile
 +
/sbin/e-smith/signal-event remoteaccess-update
 +
 
 +
====allow a service to start for a  particular time====
 +
 
 +
in this way SME's knows how to/if  start the service at startup
 +
config set myapplicationname service status enabled
 +
 
 +
cd /etc/rc.d/init.d
 +
ln -s myinitscript myapplicationname
 +
 
 +
 
 +
this should be not necessary: we are creating a symlink of the original startup script with a new name (the point is that myapplicationname must be identical to the service name above)
 +
 
 +
cd /etc/rc7.d
 +
ln -s  /etc/rc.d/init.d/e-smith-service SXXmyapplicationname
 +
 
 +
we create a symlink to e-smith-service startup script with a name where:
 +
S tells SME to start
 +
XX are numbers.. you can decide when to start the service (you should not start something that need the network before the network itself is up and running)
 +
myapplicationname.. you already know :-)
 +
==== creer un service a la main avec db configuration et lui attribuer des accès. ====
 +
db configuration set transmission-daemon service
 +
db configuration setprop transmission-daemon TCPPort 51413
 +
db configuration setprop transmission-daemon status enabled
 +
db configuration setprop transmission-daemon access public
 +
 
 +
==== créer a la main des valeurs db configuration ====
 +
  ##set db configuration
 +
#/sbin/e-smith/db configuration setprop automysqlbackup Mailcontent log
 +
#/sbin/e-smith/db configuration setprop automysqlbackup Sizemail 8000
 +
  #/sbin/e-smith/db configuration setprop automysqlbackup Mailto root 
 +
#/sbin/e-smith/signal-event console-save
 +
==== smesrver-geneweb #a regarder pourquoi le service doit etre demarré a la main ====
 +
 +
config set gwd service
 +
  config setprop gwd status enabled
 +
signal-event post-upgrade
 +
signal-event reboot
 +
==== Wondershaper ====
 +
http://wiki.contribs.org/Wondershaper
 +
smeserver-qos daniel
 +
smeserver-htbwshaper
 +
==== temp Folder for php ====
 +
mkdir /etc/e-smith/templates-custom/etc/php.ini/             
 +
nano /etc/e-smith/templates-custom/etc/php.ini/12phptmpfolder
 +
then paste this and save the file by ctrl+x
 +
 
 +
upload_tmp_dir = /tmp
 +
 
 +
and then do
 +
  signal-event console-save
 +
==== allow the "allow_url_fopen" ====
 +
<nowiki>
 +
mkdir -p /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf
 +
nano -w /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/99allow_url_fopen
 +
</nowiki>
 +
 
 +
and paste the following and save this
 +
 
 +
<nowiki>
 +
<Directory /home/e-smith/files/ibays/owncloud/html>
 +
php_admin_flag allow_url_fopen on
 +
</Directory>
 +
</nowiki>
 +
 
 +
then at the command line prompt enter:
 +
 
 +
<nowiki>
 +
expand-template /etc/httpd/conf/httpd.conf
 +
/etc/init.d/httpd-e-smith restart
 +
</nowiki>
 +
 
 +
==== ROOT PWD ====
 +
PWD=$(cat /etc/ldap.secret)###donne le mot de passe mysql root en argument
 +
or
 +
perl -Mesmith::util -e 'print esmith::util::LdapPassword();'
 +
or
 +
password = {esmith::util::LdapPassword();}
 +
 
 +
==== CGMINER ====
 +
yum --enablerepo smecontribs install cgminer
 
  cgminer -o contribs.org:8332 -u myident -p x
 
  cgminer -o contribs.org:8332 -u myident -p x
 
  screen -S cgminer -t cgminer -dm cgminer -o contribs.org:8332 -u myident -p x
 
  screen -S cgminer -t cgminer -dm cgminer -o contribs.org:8332 -u myident -p x
Line 28: Line 354:     
Autre cas, création d'un utilisateur standard avec accès local sur une base de données existante (très utile pour les scripts PHP, notamment) :
 
Autre cas, création d'un utilisateur standard avec accès local sur une base de données existante (très utile pour les scripts PHP, notamment) :
 +
 +
    
mysql> GRANT SELECT, UPDATE, INSERT, DELETE ON base_de_données.* TO 'nouvel_utilisateur'@'localhost' IDENTIFIED BY 'mot_de_passe';
 
mysql> GRANT SELECT, UPDATE, INSERT, DELETE ON base_de_données.* TO 'nouvel_utilisateur'@'localhost' IDENTIFIED BY 'mot_de_passe';
Line 44: Line 372:  
Bye
 
Bye
   −
==automysqlbackup==
+
====JIGDO====
i'm testing, not ready yet
+
The documentation is the one line below. It presumes that jigdo is installed, when using SME 7 I used Dag, but on my COS6 build machine it was from epel, so just.
===starting===
+
yum install jigdo
 +
 
 +
Then you need to obtain|mirror|download  .../smeserver/releases/testing/8.1beta1/
 +
You need both the iso and smeos directories.
   −
wget http://sourceforge.net/projects/automysqlbackup/files/latest/download
+
After that it really is just one command, which you run from the iso/i386 or iso/x86_64 directories
tar xvf automysqlbackup-v3.0_rc6.tar.gz
     −
mkdir /etc/automysqlbackup
+
To create the ISO you need the iso and smeos directories from your
mv  automysqlbackup.conf /etc/automysqlbackup
+
local mirror.
mv automysqlbackup /usr/local/bin
  −
chmod +x /usr/local/bin/automysqlbackup
  −
mkdir /var/backup
  −
cp /etc/automysqlbackup/automysqlbackup.conf /etc/automysqlbackup/myserver.conf
  −
nano /etc/automysqlbackup/myserver.conf
     −
  nano /etc/cron.daily/runmysqlbackup
+
From the i386 directory
 +
  jigdo-lite --noask --scan ../../smeos/i386/ *.jigdo
   −
#!/bin/sh
+
====Netlogon_optimisation_and_user_informations_displayed====
  −
/usr/local/bin/automysqlbackup /etc/automysqlbackup/myserver.conf
  −
  −
chown root.root /var/backup/db* -R
  −
find /var/backup/db* -type f -exec chmod 400 {} \;
  −
find /var/backup/db* -type d -exec chmod 700 {} \;
     −
chmod +x /etc/cron.daily/runmysqlbackup
+
http://wiki.contribs.org/Netlogon_optimisation_and_user_informations_displayed
   −
===modification myserver.conf===
+
====Script contrib rpm====
   −
nano /etc/automysqlbackup/myserver.conf
+
http://atlas.itx.pialasse.com/makecontrib/
   −
  CONFIG_mysql_dump_username='root'
+
====atomic repo====
CONFIG_mysql_dump_password='your password'
+
  /sbin/e-smith/db yum_repositories set atomic repository Name 'Atomic EL5' MirrorList 'http://www.atomicorp.com/mirrorlist/atomic/centos-5-$basearch' GPGCheck yes GPGKey 'https://www.atomicorp.com/RPM-GPG-KEY.art.txt' Visible no
   −
your mysql password is in the file /root/.my.cnf
+
Signal event now to register the yum command in accepting the added repository above:
 +
/sbin/e-smith/signal-event yum-modify
   −
CONFIG_db_names=()
+
Finally we yum install the xxx with the command:
  CONFIG_db_month_names=()
+
  /usr/bin/yum -y --enablerepo='atomic' install xxx
   −
to launch the script
+
====update mysql====
 +
from atomic
 +
see http://forums.contribs.org/index.php/topic,50081.0.html
   −
automysqlbackup /etc/automysqlbackup/myserver.conf
+
==== Page de téléchargement en français ====
   −
===error with 'du' in the script===
+
Mais de rien, ça fait toujours plaisir de pouvoir aider les autres...
you can have this error
     −
###### WARNING ######
+
[[User:TheKinrar|TheKinrar]] ([[User talk:TheKinrar|talk]]) 12:07, 4 May 2014 (MDT)
Errors reported during AutoMySQLBackup execution.. Backup failed
  −
Error log below..
  −
du: WARNING: use --si, not -H; the meaning of the -H option will soon
  −
change to be the same as that of --dereference-args (-D)
     −
see lines 1972
+
J'irai jeter un petit coup d'oeuil à la doc à l'occasion... Là je m'étais mis à traduire la page  [[SME_Server:Volunteering]].
   −
nano /usr/local/bin/automysqlbackup
+
[[User:TheKinrar|TheKinrar]] ([[User talk:TheKinrar|talk]]) 12:32, 4 May 2014 (MDT)
  echo `du -hs --si "${CONFIG_backup_dir}"`
      +
Je n'y étais pas inscrit, mais je fais ça tout de suite. Et j'avais déjà regardé du côté de Pootle, le français est déjà bien avancé il me semble.
   −
# mysql --user=username --pass=password --host=dbserver database < /path/file.sql
+
[[User:TheKinrar|TheKinrar]] ([[User talk:TheKinrar|talk]]) 15:48, 4 May 2014 (MDT)
# or
  −
# mysql --user=username --pass=password --host=dbserver -e "source /path/file.sql" database
  −
#
  −
# NOTE: Make sure you use "<" and not ">" in the above command because
  −
# you are piping the file.sql to mysql and not the other way around.
  −
#
  −
# Lets hope you never have to use this.. :)
 

Navigation menu