Editing OpenSuse Build Service/Installation

Warning: You are not logged in. Your IP address will be recorded in this page's edit history.
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 11: Line 11:
== Networking Overview ==
== Networking Overview ==
-
The Front End (FE) machine provides two major services:  
+
The fe machine provides the two major services:  
* the webui on build.obs and
* the webui on build.obs and
-
* the API on apo.obs;
+
* the api on apo.obs;
It is also a useful holding point for the download service on download.obs
It is also a useful holding point for the download service on download.obs
-
The Back End (BE) machine provides the backend services including the schedulers, source server and repo server. The repo server (used by the workers to get required rpms) also doubles as the download server via a reverse-proxy on the FE.
+
The be machine provides the backend services including the schedulers, source server and repo server. The repo server (used by the workers to get required rpms) also doubles as the download server via a reverse-proxy on the fe.
<source lang="bash">
<source lang="bash">
Line 47: Line 47:
</source>
</source>
-
Create some Xen volumes
+
Create some xen volumes
<source lang='bash'>
<source lang='bash'>
lvcreate -L 10G VG_data -n fe_root
lvcreate -L 10G VG_data -n fe_root
Line 62: Line 62:
</source>
</source>
-
Prepare an openSUSE minimal image:
+
Prpeare an opensuse minimal image:
<source lang='bash'>
<source lang='bash'>
-
ROOTFS=/data/11.2min/image-root
 
mkdir /data/11.2min
mkdir /data/11.2min
-
kiwi --prepare suse-11.2-JeOS --root $ROOTFS --add-profile xenFlavour --add-package less --add-package iputils
+
kiwi --prepare suse-11.2-JeOS --root /data/11.2min/image-root --add-profile xenFlavour --add-package less --add-package iputils
</source>
</source>
Update the config & modules:
Update the config & modules:
<source lang='bash'>
<source lang='bash'>
-
ROOTFS=/data/11.2min/image-root
+
cp -a /lib/modules/2.6.31.12-0.2-xen /data/11.2min/image-root/lib/modules/
-
cp -a /lib/modules/2.6.31.12-0.2-xen $ROOTFS/lib/modules/
+
-
echo default 10.1.1.1 > $ROOTFS/etc/sysconfig/network/routes
+
echo default 10.1.1.1 > /data/11.2min/image-root/etc/sysconfig/network/routes
-
echo NETCONFIG_DNS_POLICY=\"\" >> $ROOTFS/etc/sysconfig/network/config
+
echo NETCONFIG_DNS_POLICY=\"\" >> /data/11.2min/image-root/etc/sysconfig/network/config
-
echo nameserver 8.8.8.8 > $ROOTFS/etc/resolv.conf
+
echo nameserver 8.8.8.8 > /data/11.2min/image-root/etc/resolv.conf
-
echo default 10.1.1.1 > $ROOTFS/etc/sysconfig/network/routes
+
echo default 10.1.1.1 > /data/11.2min/image-root/etc/sysconfig/network/routes
-
cat << EOF >$ROOTFS/etc/sysconfig/network/ifcfg-eth0
+
cat << EOF >/data/11.2min/image-root/etc/sysconfig/network/ifcfg-eth0
BOOTPROTO='static'
BOOTPROTO='static'
BROADCAST=''
BROADCAST=''
STARTMODE='onboot'
STARTMODE='onboot'
EOF
EOF
-
echo /dev/xvda1 swap swap defaults 0 0 >> $ROOTFS/etc/fstab
 
</source>
</source>
Line 137: Line 134:
== Interim config ==
== Interim config ==
<source lang='bash'>
<source lang='bash'>
-
zypper in wget less iputils terminfo emacs
+
zypper in wget less iputils
</source>
</source>
-
== Installing the Backend ==
 
-
 
-
On this host we need also to setup openSUSE Tools repository:
 
-
<source lang='bash'>
 
-
cd /etc/zypp/repos.d/;
 
-
wget http://download.opensuse.org/repositories/openSUSE:/Tools/openSUSE_11.2/openSUSE:Tools.repo
 
-
zypper ref
 
-
# Accept the trust key
 
-
</source>
 
-
 
-
Install:
 
-
<source lang='bash'>
 
-
zypper in obs-server obs-signer obs-utils createrepo dpkg nfs-client
 
-
# obs-server brings these other packages as dependency. This is just for you to notice which packages are needed for Backend installation
 
-
# createrepo & dpkg are only recommends
 
-
# NFS client is needed as we use an NFS share for host/BE interchange
 
-
</source>
 
-
Configure Scheduler architectures
 
-
<source lang='bash'>
 
-
vi /etc/sysconfig/obs-server
 
-
OBS_SCHEDULER_ARCHITECTURES="i586 armv5el armv7el“
 
-
</source>
 
-
 
-
/usr/lib/obs/server/BSConfig.pm needs to point to correct server names corresponding to source server, where workers are going to download the source, and the repository server, where RPM repos are going to be shared to users.
 
-
<source lang='bash'>
 
-
vi /usr/lib/obs/server/BSConfig.pm
 
-
#add
 
-
$hostname="be.obs.maemo.org";
 
-
 
-
our $srcserver = "http://src.obs.maemo.org:5352";
 
-
our $reposerver = "http://repo.obs.maemo.org:5252";
 
-
our $repodownload = "http://$hostname/repositories";
 
-
</source>
 
-
 
-
Configure services as daemons
 
-
<source lang='bash'>
 
-
chkconfig --add obsrepserver obssrcserver obsscheduler obsdispatcher obspublisher obswarden obssigner
 
-
 
-
#Check them
 
-
chkconfig -l obsrepserver obssrcserver obsscheduler obsdispatcher obspublisher
 
-
</source>
 
-
Start Services
 
-
<source lang='bash'>
 
-
  rcobsrepserver start
 
-
  rcobssrcserver start
 
-
  rcobsscheduler start
 
-
  rcobsdispatcher start
 
-
  rcobspublisher  start
 
-
</source>
 
-
For version 1.7 there are a new services. You can start them as well:
 
-
* '''obswarden'''
 
-
  It checks if build hosts are dying and cleans up hanging builds
 
-
* '''obssigner'''
 
-
  It is used to sign packages via the obs-sign daemon. You need to configure
 
-
  it in BSConfig.pm before you can use it.
 
-
* '''obsservice'''
 
-
  This is the source service daemon. OBS 1.7 just comes with a download
 
-
  service so far. This feature is considered to be experimental so far,
 
-
  but can be already extended with own services.
 
-
 
-
'''Install Lighttpd'''
 
-
 
-
lighttpd also needs to be available on backend server. This is required to provide directory listing on the repositories available on this server when an http/s request to maemo-repo is made through web ui.
 
-
 
-
<source lang='bash'>
 
-
zypper in lighttpd
 
-
</source>
 
-
 
-
Create a new file under /etc/lighttpd/vhosts.d/. It can be obs.conf as well, and add:
 
-
<source lang='bash'>
 
-
vi /etc/lighttpd/vhosts.d/obs.conf
 
-
 
-
$HTTP["host"] =~ "repo.obs.maemo.org" {
 
-
  server.name = "repo.obs.maemo.org"
 
-
 
-
  server.document-root = "/srv/obs/repos/"
 
-
  dir-listing.activate = "enable"
 
-
}
 
-
</source>
 
-
 
-
To enable vhosts, remember to '''uncomment''' the following in the 'custom includes':
 
-
 
-
<source lang='bash'>
 
-
vi /etc/lighttpd/lighttpd.conf
 
-
##
 
-
  ## custom includes like vhosts.
 
-
  ##
 
-
  #include "conf.d/config.conf"
 
-
  # following line uncommented as per
 
-
  # /usr/share/doc/packages/obs-api/README.SETUP
 
-
  include_shell "cat vhosts.d/*.conf" 
 
-
</source>
 
-
 
-
Start lighttpd
 
-
<source lang='bash'>
 
-
#first add it as deamon
 
-
chkconfig --add lighttpd
 
-
rclighttpd start
 
-
</source>
 
-
== Installing the FrontEnd (WebUI and API) ==
+
== Installing the Frontend (WebUI and API) ==
-
Start with a minimal SUSE install and then add Tools repository where OBS 1.7 is available.
+
Start with a minimal Suse install and then add Tools repository where OBS 1.7 is available.
<source lang='bash'>
<source lang='bash'>
cd /etc/zypp/repos.d/;
cd /etc/zypp/repos.d/;
Line 255: Line 153:
</source>
</source>
-
'''Setup MySQL'''
+
'''Setup Mysql'''
-
MySQL server needs to be installed and configured to start as daemon
+
Mysql server needs to be installed and configured to start as deamon
<source lang='bash'>
<source lang='bash'>
chkconfig --add mysql
chkconfig --add mysql
rcmysql start
rcmysql start
</source>
</source>
-
Setup a secure installation, if it's the first time starting MySQL
+
Setup a secure installation, if it's the first time starting mysql
<source lang='bash'>
<source lang='bash'>
/usr/bin/mysql_secure_installation
/usr/bin/mysql_secure_installation
</source>
</source>
-
The frontend instance holds 2 applications, the API and the webui. Each one need a database created
+
The frontend instance holds 2 applications, the api and the webui. Each one need a database created
<source lang='bash'>
<source lang='bash'>
mysql -u root -p
mysql -u root -p
Line 282: Line 180:
FLUSH PRIVILEGES;
FLUSH PRIVILEGES;
</source>
</source>
-
Configure your MySQL user and password in the "production:" section of the API config:  
+
Configure your MySQL user and password in the "production:" section of the api config:  
<source lang='bash'>
<source lang='bash'>
vi /srv/www/obs/api/config/database.yml
vi /srv/www/obs/api/config/database.yml
Line 292: Line 190:
   password: ************
   password: ************
</source>
</source>
-
Do the same for the webui. It's configured, by default to use SQLite, but since we're configuring the cluster for production environment, let's bind it to mysql:
+
Do the same for the webui. It's configured, by default to use sqlite, but since we're configuring the cluster for production environment, let's bind it to mysql:
<source lang='bash'>
<source lang='bash'>
Line 313: Line 211:
You can check the migration was successful verifying the “migrated” message at the end of each statement.
You can check the migration was successful verifying the “migrated” message at the end of each statement.
-
'''Setup and configure lighttpd for the API and webui'''
+
'''Setup and configure lighttpd for the api and webui'''
-
You need to setup the correct hostnames to where webui, API and repo server are going to point to
+
You need to setup the correct hostnames to where webui, api and repo server are going to point to
<source lang='bash'>
<source lang='bash'>
vi /etc/lighttpd/vhosts.d/obs.conf
vi /etc/lighttpd/vhosts.d/obs.conf
Line 340: Line 238:
   include "vhosts.d/rails.inc"
   include "vhosts.d/rails.inc"
}
}
-
$HTTP["host"] =~ "download" {
+
<$HTTP["host"] =~ "download" {
-
# This should point to an rsync populated download repo
+
  server.name = "download.obs.maemo.org"
-
server.name = "download.obs.maemo.org"
+
-
#  server.document-root = "/srv/obs/repos/"
+
-
   proxy.server = ( "" => ( (
+
   server.document-root = "/srv/obs/repos/"
-
        "host" => "10.1.1.11",
+
-
        "port" => 80
+
-
      ))
+
-
  )
+
}
}
/source>
/source>
Line 364: Line 256:
   include_shell "cat vhosts.d/*.conf"   
   include_shell "cat vhosts.d/*.conf"   
</source>
</source>
-
Also, the modules "mod_magnet", "mod_rewrite" and FastCGI need to be enabled by uncommenting the corresponding lines in /etc/lighttpd/modules.conf:
+
Also, the modules "mod_magnet", "mod_rewrite" and fastcgi need to be enabled by uncommenting the corresponding lines in /etc/lighttpd/modules.conf:
<source lang='bash'>
<source lang='bash'>
vi /etc/lighttpd/modules.conf
vi /etc/lighttpd/modules.conf
Line 417: Line 309:
</source>
</source>
-
ligthttpd user and group need to be the owner of api and webui dirs (as well as log and tmp):
+
ligthttpd user and group need to be the onwer of api and webui dirs (as well as log and tmp):
<source lang='bash'>
<source lang='bash'>
chown -R lighttpd.lighttpd /srv/www/obs/{api,webui}
chown -R lighttpd.lighttpd /srv/www/obs/{api,webui}
 +
</source>
 +
 +
== Installing the Backend ==
 +
 +
On this host we need also to setup openSuse Tools repository:
 +
<source lang='bash'>
 +
cd /etc/zypp/repos.d/;
 +
wget http://download.opensuse.org/repositories/openSUSE:/Tools/openSUSE_11.2/openSUSE:Tools.repo
 +
zypper ref
 +
# Accept the trust key
 +
</source>
 +
 +
Install:
 +
<source lang='bash'>
 +
zypper in obs-server obs-signer obs-utils
 +
# obs-server brings these other packages as dependency. This is just for you to notice which packages are needed for Backend installation
 +
</source>
 +
Configure Scheduler architectures
 +
<source lang='bash'>
 +
vi /etc/sysconfig/obs-server
 +
OBS_SCHEDULER_ARCHITECTURES="i586 armv5el armv7el“
 +
</source>
 +
 +
/usr/lib/obs/server/BSConfig.pm needs to point to correct server names corresponding to source server, where workers are going to download the source, and the repository server, where RPM repos are going to be shered to users.
 +
<source lang='bash'>
 +
vi /usr/lib/obs/server/BSConfig.pm
 +
#add
 +
$hostname="be.obs.maemo.org";
 +
 +
our $srcserver = "http://src.obs.maemo.org:5352";
 +
our $reposerver = "http://repo.obs.maemo.org:5252";
 +
our $repodownload = "http://$hostname/repositories";
 +
</source>
 +
 +
Configure services as deamons
 +
<source lang='bash'>
 +
chkconfig --add obsrepserver obssrcserver obsscheduler obsdispatcher obspublisher obswarden obssigner
 +
 +
#Check them
 +
chkconfig -l obsrepserver obssrcserver obsscheduler obsdispatcher obspublisher
 +
</source>
 +
Start Services
 +
<source lang='bash'>
 +
  rcobsrepserver start
 +
  rcobssrcserver start
 +
  rcobsscheduler start
 +
  rcobsdispatcher start
 +
  rcobspublisher  start
 +
</source>
 +
For version 1.7 there are a new services. You can start them as well:
 +
* '''obswarden'''
 +
  It checks if build hosts are dieing and cleans up hanging builds
 +
* '''obssigner'''
 +
  It is used to sign packages via the obs-sign daemon. You need to configure
 +
  it in BSConfig.pm before you can use it.
 +
* '''obsservice'''
 +
  The is the source service daemon. OBS 1.7 just comes with a download
 +
  service so far. This feature is considered to be experimental so far,
 +
  but can be already extended with own services.
 +
 +
'''Install Lighttpd'''
 +
 +
lighttpd also needs to be available on backend server. This is required to provide directory listing on the repositories available on this server when an http/s request to maemo-repo is made through web ui.
 +
 +
<source lang='bash'>
 +
zypper in lighttpd
 +
</source>
 +
 +
Create a new file under /etc/lighttpd/vhosts.d/. It can be obs.conf as well, and add:
 +
<source lang='bash'>
 +
vi /etc/lighttpd/vhosts.d/obs.conf
 +
 +
$HTTP["host"] =~ "repo.obs.maemo.org" {
 +
  server.name = "repo.obs.maemo.org"
 +
 +
  server.document-root = "/srv/obs/repos/"
 +
  dir-listing.activate = "enable"
 +
}
 +
</source>
 +
 +
To enable vhosts, remember to '''uncomment''' the following in the 'custom includes':
 +
 +
<source lang='bash'>
 +
vi /etc/lighttpd/lighttpd.conf
 +
##
 +
  ## custom includes like vhosts.
 +
  ##
 +
  #include "conf.d/config.conf"
 +
  # following line uncommented as per
 +
  # /usr/share/doc/packages/obs-api/README.SETUP
 +
  include_shell "cat vhosts.d/*.conf" 
 +
</source>
 +
 +
Start lighttpd
 +
<source lang='bash'>
 +
#first add it as deamon
 +
chkconfig --add lighttpd
 +
rclighttpd start
</source>
</source>
Line 426: Line 416:
The other 14 hosts on the cluster are reserved to be used as workers, where package builds are going to place.
The other 14 hosts on the cluster are reserved to be used as workers, where package builds are going to place.
-
The same openSUSE Tools repository addition must be done for each worker.
+
The same openSuse Tools repository addition must be done for each worker.
<source lang='bash'>
<source lang='bash'>
cd /etc/zypp/repos.d/;
cd /etc/zypp/repos.d/;
Line 459: Line 449:
== Tuning ==
== Tuning ==
The lighttpd config was reduced to 3 api/webui child processes from 5.
The lighttpd config was reduced to 3 api/webui child processes from 5.
-
 
-
== Revise VG setup ==
 
-
 
-
pvcreate /dev/disk/by-id/dm-name-360060e8005478600000047860000398c_part1
 
-
pvcreate /dev/disk/by-id/dm-name-360060e8005478600000047860000398c_part2
 
-
pvcreate /dev/disk/by-id/dm-name-360060e8005478600000047860000398c_part3
 
-
pvcreate /dev/disk/by-id/dm-name-360060e8005478600000047860000398c_part4
 
-
 
-
Now create the OBS VG for the host Xen worker:
 
-
vgcreate OBS /dev/disk/by-id/dm-name-360060e8005478600000047860000398c_part1
 
-
vgextend OBS /dev/disk/by-id/dm-name-360060e8005478600000047860000398c_part2
 
-
 
-
 
-
lvcreate -L 20G -n cache OBS
 
-
mkfs -text4 /dev/OBS/cache
 
-
 
-
for i in 1 2 3 4 5 6 7 8 9 10
 
-
do
 
-
  lvcreate -L 4G -n worker_root$i OBS
 
-
  mkfs -text4 /dev/OBS/worker_root$i
 
-
  lvcreate -L 1G -n worker_swap$i OBS
 
-
  mkswap -f /dev/OBS/worker_swap$i
 
-
done
 
-
 
-
Note in 1.7.3 obsstoragesetup makes /OBS.worker/root1/root but obsworker looks for /OBS.worker/root_1/root (root1 vs root_1)
 
-
 
-
 
-
Also ensure the host has :
 
-
obs-worker (1.7.3)
 
-
qemu-svn
 
-
 
-
In order to run arm binaries in the Xen chroot we need to ensure the initrd inserts binfmt_misc
 
-
in /etc/sysconfig/kernel, set
 
-
  DOMU_INITRD_MODULES="xennet xenblk binfmt_misc
 
-
then
 
-
mkinitrd -k vmlinuz-2.6.31.12-0.2-xen -i initrd-2.6.31.12-0.2-xen-binfmt -B
 
-
 
-
On the backend machine edit /usr/lib/build/xen.conf to use the correct initrd
 
-
 
-
== Remove Power/PPC from monitor page==
 
-
 
-
We don't target PPC, so best remove it from the build monitor page:
 
-
 
-
On FE in webui/app/views/monitor/_plots.rhtml
 
-
 
-
Use html comments to disable the Power line:
 
-
 
-
<pre><!--<%= render :partial => 'graphs_arch', :locals => { :title => "Power", :prefix => 'ppc_' } %>--></pre>
 
-
 
-
On FE webui/config/environment.rb
 
-
 
-
Change the MONITOR_IMAGEMAP section to:
 
-
 
-
<pre>MONITOR_IMAGEMAP = {.
 
-
      'pc_waiting' => [
 
-
        ["i586", 'waiting_i586'],
 
-
        ["x86_64", 'waiting_x86_64'] ],
 
-
      'pc_blocked' => [
 
-
        ["i586", 'blocked_i586' ],
 
-
        ["x86_64", 'blocked_x86_64'] ],
 
-
      'pc_workers' => [
 
-
        ["idle", 'idle_x86_64' ],
 
-
        ['building', 'building_x86_64' ] ],
 
-
#      'ppc_waiting' => [
 
-
#        ["ppc", 'waiting_ppc'],
 
-
#        ["ppc64", 'waiting_ppc64'] ],
 
-
#      'ppc_blocked' => [
 
-
#        ["ppc", 'blocked_ppc' ],
 
-
#        ["ppc64", 'blocked_ppc64'] ],
 
-
#      'ppc_workers' => [
 
-
#        ["idle", 'idle_ppc64' ],
 
-
#        ['building', 'building_ppc64' ] ],
 
-
      'arm_waiting' => [
 
-
        ["armv5", 'waiting_armv5el'],
 
-
        ["armv7", 'waiting_armv7el'] ],
 
-
      'arm_blocked' => [
 
-
        ["armv5", 'blocked_armv5el' ],
 
-
        ["armv7", 'blocked_armv7el'] ],
 
-
      'arm_workers' => [
 
-
        ["idle", 'idle_armv7el' ],
 
-
        ['building', 'building_armv7el' ] ],
 
-
    }
 
-
 
-
</pre>
 
-
[[Category:OpenSuse build service]]
 

Learn more about Contributing to the wiki.


Please note that all contributions to maemo.org wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see maemo.org wiki:Copyrights for details). Do not submit copyrighted work without permission!


Cancel | Editing help (opens in new window)