Changes

From SME Server
Jump to navigationJump to search
14,565 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/
   −
=== Installation ===
+
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
   −
in the directory where you want to work
+
http://forums.contribs.org/index.php/topic,50141.0.html
 +
Advice/fr
   −
mkdir transmission
+
de epel il y a bugzilla, cacti, gallery2, mediawiki, nagios, zaraf, moodle, ocsinventory, roundcube, wordpress et zabbix
cd transmission
     −
then we need to install all the following files, you have to adjust with your cpu architecture
+
voir smeserver-mediawiki.src.rpm smeserver-kplaylist.src.rpm smeserver-groupoffice smeserver-wordpress
   −
  wget http://geekery.altervista.org/geekery/el5/i386/libevent2-2.0.10-1geekery.i386.rpm
+
  faire contrib smf  typo3 phpbb
  wget http://geekery.altervista.org/geekery/el5/i386/transmission-2.76-1geekery.i386.rpm
+
tester  smeserver-user-webspace a user web space
wget http://geekery.altervista.org/geekery/el5/i386/transmission-common-2.76-1geekery.i386.rpm
+
 
  wget http://geekery.altervista.org/geekery/el5/i386/transmission-daemon-2.76-1geekery.i386.rpm
+
 
wget http://geekery.altervista.org/geekery/el5/i386/transmission-cli-2.76-1geekery.i386.rpm
+
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
 
or
  wget http://geekery.altervista.org/geekery/el5/x86_64/libevent2-2.0.10-1geekery.x86_64.rpm
+
  grep -srni '${[A-Za-z0-9]\|$[A-Za-z0-9]\|_prop' /etc/e-smith/templates*| grep '} |\|}|\|_prop' |less
  wget http://geekery.altervista.org/geekery/el5/x86_64/transmission-2.76-1geekery.x86_64.rpm
+
 
wget http://geekery.altervista.org/geekery/el5/x86_64/transmission-common-2.76-1geekery.x86_64.rpm
+
====70-persistent-net.rules====
  wget http://geekery.altervista.org/geekery/el5/x86_64/transmission-daemon-2.76-1geekery.x86_64.rpm
+
[root@sme9 ~]# locate 70-persistent
wget http://geekery.altervista.org/geekery/el5/x86_64/transmission-cli-2.76-1geekery.x86_64.rpm
+
/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 ====
   −
the root user can install rpm above
+
http://forums.contribs.org/index.php/topic,50585.msg254867.html#msg254867
   −
  yum local install *
+
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
   −
=== Configuration ===
+
=====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:
   −
{{note box|we must stop the deamon before every manual modifications of setting.json}}
+
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
   −
/etc/init.d/transmission-daemon stop
+
or this one lighter
nano /var/lib/transmission/settings.json
     −
allow your network range to connect to the transmission-deamon '''"*" can be used as a wild card'''
+
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
   −
  "rpc-whitelist": "'''127.0.0.1,192.168.1.*'''",
+
==== Deleting and unregistering service ====
  "rpc-whitelist-enabled": '''true''',
+
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
   −
you can find a lot of useful option directly in the [https://trac.transmissionbt.com/wiki/EditConfigFiles Transmission wiki] but normally some of them are usable in the web utility
+
====allow a service to start for a  particular time====
   −
we can launch the deamon
+
in this way SME's knows how to/if  start the service at startup
 +
config set myapplicationname service status enabled
   −
  /etc/init.d/transmission-daemon start
+
  cd /etc/rc.d/init.d
 +
ln -s myinitscript myapplicationname
   −
=== Allow port in sme firewall ===
     −
by default the transmission-deamon use the 51413 port for sharing with other computer so we have to authorize it in the sme firewall and after you may need to allow it in the nat configuration of your router if the upnp configuration does'nt work.
+
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 set transmission-daemon service
 
  db configuration setprop transmission-daemon TCPPort 51413
 
  db configuration setprop transmission-daemon TCPPort 51413
Line 53: Line 279:  
  db configuration setprop transmission-daemon access public
 
  db configuration setprop transmission-daemon access public
   −
{{tip box|After that if you go to the menu "Edit Preferences/network you can verify if the port is "open"}}
+
==== 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
 +
screen -S cgminer -t cgminer -dm cgminer -o contribs.org:8332 -u myident -p x
 +
 
 +
If you want to make it start automatically and run in the background you can do the following:
 +
screen -S cgminer -t cgminer -dm cgminer -o contribs.org:8332 -u myident -p x
 +
then connect to it with:
 +
screen -x
 +
and disconnect from it with:
 +
CTRL-A, CTRL-D
 +
 
 +
 
 +
Commençons par le cas de la création d'un DBA avec accès depuis votre réseau local. Ceci est fort utile si vous souhaitez administrer votre serveur MySQL à partir d'une autre machine de votre réseau (il existe de sympathiques interfaces graphiques qui simplifient la vie).
 +
Je supposerais ici que l'adresse de votre réseau est 192.168.10.0/255.255.255.0 ; vous pouvez même spécifier une adresse IP en particulier, pour plus de sécurité (dans ce cas, le masque serait 255.255.255.255) :
 +
 
 +
mysql> GRANT ALL PRIVILEGES ON *.* TO 'nouveau_dba'@'192.168.10.0/255.255.255.0' IDENTIFIED BY 'mot_de_passe' WITH GRANT OPTION;
 +
Query OK, 0 rows affected (0.01 sec)
 +
 
 +
Nota : l'option "WITH GRANT OPTION" n'est pas indispensable et doit être évitée à chaque fois que c'est possible. Elle n'est présentée ici que pour être conforme aux droits que doit avoir un DBA (voir la documentation s'y rapportant pour plus d'informations).
 +
 
 +
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';
 +
Query OK, 0 rows affected (0.01 sec)
 +
 
 +
Nota : ne modifiez pas le paramètre 'localhost'.
 +
 
 +
Il existe bien entendu de multiples variations et combinaisons, mais les deux cas que je viens de vous présenter correspond à l'immense majorité des besoins des utilisateurs sur SME.
 +
 
 +
Après la création de nouveaux utilisateurs, vous devez indiquer à MySQL de les prendre en compte et, ensuite, quitter le client :
 +
 
 +
mysql> FLUSH PRIVILEGES;
 +
Query OK, 0 rows affected (0.00 sec)
 +
 
 +
mysql> QUIT;
 +
Bye
 +
 
 +
====JIGDO====
 +
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.
 +
yum install jigdo
 +
 
 +
Then you need to obtain|mirror|download  .../smeserver/releases/testing/8.1beta1/
 +
You need both the iso and smeos directories.
 +
 
 +
After that it really is just one command, which you run from the iso/i386 or iso/x86_64 directories
 +
 
 +
To create the ISO you need the iso and smeos directories from your
 +
local mirror.
 +
 
 +
From the i386 directory
 +
jigdo-lite --noask --scan ../../smeos/i386/ *.jigdo
 +
 
 +
====Netlogon_optimisation_and_user_informations_displayed====
 +
 
 +
http://wiki.contribs.org/Netlogon_optimisation_and_user_informations_displayed
 +
 
 +
====Script contrib rpm====
 +
 
 +
http://atlas.itx.pialasse.com/makecontrib/
 +
 
 +
====atomic repo====
 +
/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
 +
 
 +
Signal event now to register the yum command in accepting the added repository above:
 +
/sbin/e-smith/signal-event yum-modify
 +
 
 +
Finally we yum install the xxx with the command:
 +
/usr/bin/yum -y --enablerepo='atomic' install xxx
 +
 
 +
====update mysql====
 +
from atomic
 +
see http://forums.contribs.org/index.php/topic,50081.0.html
 +
 
 +
==== Page de téléchargement en français ====
 +
 
 +
Mais de rien, ça fait toujours plaisir de pouvoir aider les autres...
 +
 
 +
[[User:TheKinrar|TheKinrar]] ([[User talk:TheKinrar|talk]]) 12:07, 4 May 2014 (MDT)
   −
=== runlevel7 ===
+
J'irai jeter un petit coup d'oeuil à la doc à l'occasion... Là je m'étais mis à traduire la page  [[SME_Server:Volunteering]].
if you restart your computer you can experiment that the service is not started because there is no link to rc.7d, so you have to do this command line to allow transmission deamon operate in runlevel 7.
     −
ln -s /etc/init.d/transmission-daemon /etc/rc.d/rc7.d/S99transmission-daemon
+
[[User:TheKinrar|TheKinrar]] ([[User talk:TheKinrar|talk]]) 12:32, 4 May 2014 (MDT)
   −
=== play with transmission ===
+
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.
   −
now you are able to use transmission deamon with this url in the web browser http://your-ip-sme:9091
+
[[User:TheKinrar|TheKinrar]] ([[User talk:TheKinrar|talk]]) 15:48, 4 May 2014 (MDT)

Navigation menu