<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general">
    <title>gmane.comp.python.zope.erp5.general</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1593"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1592"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1591"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1590"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1589"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1588"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1587"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1586"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1585"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1584"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1583"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1582"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1581"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1580"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1579"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1578"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1577"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1576"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1575"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1574"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1593">
    <title>Invitation to connect on LinkedIn</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1593</link>
    <description>&lt;pre&gt;LinkedIn
------------



Documentation,

I'd like to add you to my professional network on LinkedIn.

- Collins

Collins Areba
R &amp;amp; D at Center for Renewable Alternatives
Kenya

Confirm that you know Collins Areba:
https://www.linkedin.com/e/jpb3vf-h22vxw6u-57/isd/7056529182/UvtboGyv/?hs=false&amp;amp;tok=32HO4kTVHUYlc1

--
You are receiving Invitation to Connect emails. Click to unsubscribe:
http://www.linkedin.com/e/jpb3vf-h22vxw6u-57/zlnzqajzrdPHN3XtFfaHDx1zga9ct_H/goo/erp5-users%40erp5%2Eorg/20061/I2412361311_1/?hs=false&amp;amp;tok=0xHGRJIHLUYlc1

(c) 2012 LinkedIn Corporation. 2029 Stierlin Ct, Mountain View, CA 94043, USA.

_______________________________________________
Erp5-users mailing list
Erp5-users&amp;lt; at &amp;gt;erp5.org
https://mail.tiolive.com/mailman/listinfo/erp5-users
&lt;/pre&gt;</description>
    <dc:creator>Collins Areba</dc:creator>
    <dc:date>2012-05-11T06:48:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1592">
    <title>Re: Remote access to ERP5 installed through RPM</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1592</link>
    <description>&lt;pre&gt;i faced the same problem but i could solve it by using nginx/apache.
configuration file is as below



    server {
           listen 80;
           server_name 192.168.16.103;


    location /erp5/ {


           proxy_pass        http://localhost:12001/erp5/;
           proxy_redirect     off;

           proxy_set_header   Host             $host;
           proxy_set_header   X-Real-IP        $remote_addr;
           proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
           proxy_max_temp_file_size 0;

           proxy_connect_timeout      180;
           proxy_send_timeout         180;
           proxy_read_timeout         180;

           proxy_buffer_size          4k;
           proxy_buffers              4 32k;
           proxy_busy_buffers_size    64k;
           proxy_temp_file_write_size 64k;
           client_max_body_size 800m;
           client_body_buffer_size 128k;

           proxy_set_header X-Forwarded-Proto https;

        }

    }



On Tue, Jan 24, 2012 at 12:12 PM, Jack&lt;/pre&gt;</description>
    <dc:creator>Ignatius Kunjumon</dc:creator>
    <dc:date>2012-05-10T11:26:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1591">
    <title>Re: "ImportError: cannot import name expandpath" Error on startup on a fresh installation</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1591</link>
    <description>&lt;pre&gt;Solved by pinning versions as under

Products.CMFCore = 2.2.6
Products.CMFCalendar = 2.2.0-beta
Products.CMFDefault = 2.2.0-beta
Products.CMFTopic = 2.2.0-beta
Products.CMFUid = 2.2.0-beta
Products.CMFDCWorkflow = 2.2.0-beta

Regards,
Chetan
_______________________________________________
Erp5-users mailing list
Erp5-users&amp;lt; at &amp;gt;erp5.org
https://mail.tiolive.com/mailman/listinfo/erp5-users
&lt;/pre&gt;</description>
    <dc:creator>Chetan Kumar</dc:creator>
    <dc:date>2012-04-27T10:43:14</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1590">
    <title>Re: "ImportError: cannot import name expandpath" Error on startup on a fresh installation</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1590</link>
    <description>&lt;pre&gt;Thanks for the hint. I'll fix the versions.
Regards,
Chetan
_______________________________________________
Erp5-users mailing list
Erp5-users&amp;lt; at &amp;gt;erp5.org
https://mail.tiolive.com/mailman/listinfo/erp5-users
&lt;/pre&gt;</description>
    <dc:creator>Chetan Kumar</dc:creator>
    <dc:date>2012-04-24T17:57:04</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1589">
    <title>Re: "ImportError: cannot import name expandpath" Error on startup on a fresh installation</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1589</link>
    <description>&lt;pre&gt;Hi Chetan,

 From your traceback, it's clear you're using Zope 2.13. You're also 
likely using CMFCore later than version 2.2, where expandpath has been 
removed.

ERP5 has not yet been ported to Zope 2.13 or CMF packages later than 2.2.

Regards,

Leo

Em 23-04-2012 20:32, Chetan Kumar escreveu:
&lt;/pre&gt;</description>
    <dc:creator>Leonardo Rochael Almeida</dc:creator>
    <dc:date>2012-04-24T13:02:49</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1588">
    <title>"ImportError: cannot import name expandpath" Error on startup on a fresh installation</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1588</link>
    <description>&lt;pre&gt;Hi all

I am going to investigate it later.
Ready solutions are welcome

Regards,
Chetan

=================Error==============
2012-04-23T18:34:31 INFO ZServer HTTP server started at Mon Apr 23 
18:34:31 2012
         Hostname: 0.0.0.0
         Port: 18080
------
2012-04-23T18:34:31 INFO ZServer Timer server started at Mon Apr 23 
18:34:31 2012
         Interval: 5 seconds.

------
2012-04-23T18:34:31 INFO Localizer Install "Globals.get_request".
------
2012-04-23T18:34:31 WARNING 
/home/crm/Project/crm.buildout/parts/products-erp5/ZSQLCatalog/ZSQLCatalog.py:29 
DeprecationWarning: RestrictedDTML is deprecated. Please import from 
DocumentTemplate.security
------
2012-04-23T18:34:31 ERROR Application Could not import Products.CMFActivity
Traceback (most recent call last):
   File 
"/home/crm/Project/crm.buildout/eggs/Zope2-2.13.12-py2.6.egg/OFS/Application.py", 
line 606, in import_product
     product=__import__(pname, global_dict, global_dict, silly)
   File 
"/home/crm/Project/crm.buildout/parts/products-&lt;/pre&gt;</description>
    <dc:creator>Chetan Kumar</dc:creator>
    <dc:date>2012-04-23T18:32:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1587">
    <title>Re: error from buildout</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1587</link>
    <description>&lt;pre&gt;

hi!! please, tell me if you resolve your issue about buildout in erp5 slapos
install. i'm on a project on erp5 and i'm stopped there. Can you help me please?
&lt;/pre&gt;</description>
    <dc:creator>angebouabre</dc:creator>
    <dc:date>2012-04-06T07:21:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1586">
    <title>Re: ERP5 MRP &amp; extra modules</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1586</link>
    <description>&lt;pre&gt;Hi,

Le 20/03/2012 13:06, Robert Jenkins a écrit :
Congratulation.
Yes. You can install MRP modules this way.
Modules which are installed need to be configured. There is no default 
configuration in ERP5 on purpose, so that no vision of how business 
should be operated is imposed to anyone. The "configurator" provides a 
default  config of ERP5 which includes trade, CRM, accounting and 
document management but does not cover yet the MRP use cases, so there 
is no documentation yet for the MRP. User documentation is usually added 
whenever a university decided to join the "One Student One ERP" project 
( http://osoe-project.org/). So, if you know some university interested 
in teach MRP with ERP5, this will accelerate the documentation of MRP.

Meanwhile, you can read unit tests related to MRP or design 
documentation intended for developers if you want to configure MRP.

Regards,

JPS.

_______________________________________________
Erp5-users mailing list
Erp5-users&amp;lt; at &amp;gt;erp5.org
https://mail.tiolive.com/mailm&lt;/pre&gt;</description>
    <dc:creator>Jean-Paul Smets</dc:creator>
    <dc:date>2012-03-21T11:27:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1585">
    <title>ERP5 MRP &amp; extra modules</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1585</link>
    <description>&lt;pre&gt;Hi all,

 

OK, I have ERP5 installed and apparently working OK.

I have access to it from other machines on site.

 

I cannot, so far, see any features specifically for MRP, Bill of materials
type features etc.

These features appear to be extra items under 'Manage Business Templates' -
'Install Business Templates from Repositories'.

 

I've tried adding the MRP &amp;amp; Payroll modules, but cannot see any changes in
the available features, or additions in the Modules pulldown?

 

Regards,

Robert.

_______________________________________________
Erp5-users mailing list
Erp5-users&amp;lt; at &amp;gt;erp5.org
https://mail.tiolive.com/mailman/listinfo/erp5-users
&lt;/pre&gt;</description>
    <dc:creator>Robert Jenkins</dc:creator>
    <dc:date>2012-03-20T12:06:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1584">
    <title>Re: erp5 Installation - https / ssl &amp; other problems</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1584</link>
    <description>&lt;pre&gt;Hi,

 

Do you mean the URL parameters in the vifib.net screen for the instance, or
something from the host machine?

 

Also, the duplicate serial error occurs only when trying to access both
instances at the same time in firefox  whichever tab is opened first gives
the general certificate error, the second tab gives the duplicate serial
error.

 

Regards,

Robert.

 

 

From: erp5-users-bounces&amp;lt; at &amp;gt;erp5.org [mailto:erp5-users-bounces&amp;lt; at &amp;gt;erp5.org] On
Behalf Of Cédric de Saint Martin
Sent: 19 March 2012 13:11
To: Documentation and questions about the use of ERP5
Subject: Re: [Erp5-users] erp5 Installation - https / ssl &amp;amp; other problems

 

Hi Robert,

On 19 mars 2012, at 13:49, Robert Jenkins wrote:





Hi,

 

I now appear to have an erp5 install complete and the service configured,
according to vifib.net

The service page shows a couple of ipv4 urls for services, plus an ipv6 ssl
site_url presumably for access to erp5 or zope.

 

The problem is that the ipv6 url does not appear to have a security
certi&lt;/pre&gt;</description>
    <dc:creator>Robert Jenkins</dc:creator>
    <dc:date>2012-03-19T14:47:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1583">
    <title>Re: erp5 Installation - https / ssl &amp; other problems</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1583</link>
    <description>&lt;pre&gt;Hi Robert,
On 19 mars 2012, at 13:49, Robert Jenkins wrote:

First, can you give me the parameters given by this instance so that I can see by myself what is wrong?
Currently, there is no way to cancel installation. It is planned feature. If you really think it is annoying (I know it can be), we can apply a workaround for this Software Release and this instance.
Basically, each instance has its own IPv6. So all ports of those IPv6 must be open. Of course it depends of the sofwtare used in the instance, some need only ports 80/443, some will need others (FTP, database, etc). No IPv4 port needs to be open.

Regards,
Cédric

---------------------
Cédric de Saint Martin,
SlapOS Community Manager &amp;lt; at &amp;gt; ViFiB
http://www.slapos.org
+33 6 81 85 97 18




_______________________________________________
Erp5-users mailing list
Erp5-users&amp;lt; at &amp;gt;erp5.org
https://mail.tiolive.com/mailman/listinfo/erp5-users
&lt;/pre&gt;</description>
    <dc:creator>Cédric de Saint Martin</dc:creator>
    <dc:date>2012-03-19T13:10:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1582">
    <title>Re: erp5 Installation - https / ssl &amp; other problems</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1582</link>
    <description>&lt;pre&gt;Hi,

My guess (but I did not read in details long enough) is that you need to 
setup a front end Apache to access the Zope backend. This is not yet 
standard in the current recipe.

Regards,

JPS.


Le 19/03/2012 13:49, Robert Jenkins a écrit :
All ports used by a service you are willing to grant access to (ex. 80 
for an http server, 443 for an https server, etc.)

_______________________________________________
Erp5-users mailing list
Erp5-users&amp;lt; at &amp;gt;erp5.org
https://mail.tiolive.com/mailman/listinfo/erp5-users
&lt;/pre&gt;</description>
    <dc:creator>Jean-Paul Smets</dc:creator>
    <dc:date>2012-03-19T13:02:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1581">
    <title>erp5 Installation - https / ssl &amp; other problems</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1581</link>
    <description>&lt;pre&gt;Hi,

 

I now appear to have an erp5 install complete and the service configured,
according to vifib.net

The service page shows a couple of ipv4 urls for services, plus an ipv6 ssl
site_url presumably for access to erp5 or zope.

 

The problem is that the ipv6 url does not appear to have a security
certificate - trying to access it via firefox gives a certificate error
which cannot be overridden, as it says there is no certificate that it can
download - or at least does nothing when trying to d/l the certificate.

 

Looking through the docs, I realise the default xml file given when
requesting an instance does not have the certificate info shown in some
screenshots. I've updated that to include appropriate info and let the
system idle for a while to pick up the update.

 

No change, so rebooted and left for a while again - still no change.

 

 

I've now requested another instance of erp5, with the correct info in the
certificate fields from the start.

 

After a few mins, that is showing available. 

&lt;/pre&gt;</description>
    <dc:creator>Robert Jenkins</dc:creator>
    <dc:date>2012-03-19T12:49:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1580">
    <title>Re: Installation problem - missing template.cfg</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1580</link>
    <description>&lt;pre&gt;H

OK. You can also start the slapgrid-cp command through prompt.

You are right.

The provisionning part of VIFIB is designed to be compatible with a NAT 
environment and even with a VM and a userland network virtual interface 
(in such case, IPv6 is provided through tunnels). The ideas come from 
TioLive Grid ( 
http://www.dailymotion.com/video/xd7fy8_tiolive-grid-demo_tech). The 
goal is to be able to install about any software or cluster of services 
behind a NAT or on a corporate network and have all the parts configured 
automatically. The current protocol is based on polling. It will 
eventually migrate towards a form of long polling/web socket over HTTP 
to accelerate things.

The services which are provisionned by VIFIB can communicate directly 
and can keep on running even if VIFIB is down or no longer accessible 
(at least this is the design goal). If all services are located behind 
your firewall, then you do not need to change any rules in your 
firewall. But if you want other services with a gl&lt;/pre&gt;</description>
    <dc:creator>Jean-Paul Smets</dc:creator>
    <dc:date>2012-03-18T12:47:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1579">
    <title>Re: Installation problem - missing template.cfg</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1579</link>
    <description>&lt;pre&gt;Hi,

 

OK, requested ERP5 under Software, and from the next cron run of slapgrid it
is building.

 

[I've Removed all non relevant bits of previous posts]

 

Networking / firewalling:

----

I've set it to also permit incoming tcp &amp;amp; udp traffic to my test machine on
port 1024, but after realising that vifib is showing a completely different
target address, I'm thoroughly confused.

I do not understand.



My interpretation of adding a machine to a cloud system is that the shared
storage is made available to the cloud. This implies two-way traffic, so
incoming network requests. This would require that the local firewall
permits incoming traffic to the node.

 

You also mention this below - 'One Global IPv6 address to interconnect all
services'?

 

Looking again, it seems slapgrid is hierarchical, slaves send requests to
the master &amp;amp; the master never initiates communications with the slave.

 

Should incoming ipv6 traffic be permitted or not?

 

-----

 

On the ipv4 side, what is the network in slapos.&lt;/pre&gt;</description>
    <dc:creator>Robert Jenkins</dc:creator>
    <dc:date>2012-03-18T11:32:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1578">
    <title>Re: Installation problem - missing template.cfg</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1578</link>
    <description>&lt;pre&gt;Hi,

I think you did not do the step "install software". In SlapOS, you can 
request N instances of a given software. This way, you can run for 
example 10 independent instances of ERP5 (one for devt, one for prod, 
one for friend). And to create a SaaS service, it reduces costs a lot 
(it is possible to run 100 to 200 ERP5 instances on a cheap server).

But first, you must say to your server "I want ERP5 to be installed on 
this machine".
It has no consequence.
Should be fine. If you see many IPv6 addresses on the bridge, then OK.
Perfect.
Should be perfect.
I do not understand.
Should be perfect.
You can read this:
http://www.slapos.org/wiki/osoe-Lecture.SlapOS.Extended/developer-Introducing.SlapOS.Architecture

It explains. Each instance has:
- one local IPv4 address so that any IPv4 software can be used
- one global IPv6 address, to interconnect all services between 
different hosts
- and use stunnel to forward IPv6 to IPv4 (so that two IPv6 incompatible 
services can connect eachother through IPv6 in a &lt;/pre&gt;</description>
    <dc:creator>Jean-Paul Smets</dc:creator>
    <dc:date>2012-03-18T10:16:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1577">
    <title>Re: Installation problem - missing template.cfg</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1577</link>
    <description>&lt;pre&gt;Hi,

Thanks for your feeback.
It is a good choice. You can access it with a shorter URL: 
http://slapos.org/osoe-SlapOS.Book
OK. Nice to hear.
You must specifiy probably
1- install ERP5 (use the "Servers" icon for this)
2- select which computer you want to create an instance on (you can 
select it during the service request)

Great.

Regards,

JPS.



_______________________________________________
Erp5-users mailing list
Erp5-users&amp;lt; at &amp;gt;erp5.org
https://mail.tiolive.com/mailman/listinfo/erp5-users
&lt;/pre&gt;</description>
    <dc:creator>Jean-Paul Smets</dc:creator>
    <dc:date>2012-03-18T10:02:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1576">
    <title>Re: Installation problem - missing template.cfg</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1576</link>
    <description>&lt;pre&gt;Hi,

Still working on this &amp;amp; vifib is still looking for a free partition..

 

I suspect the problem may be basic network connectivity.

The docs do not make it obvious what ports are used for external
communications and which are internal or tunnelled?

 

Vifib shows a configured address nbd_id 2a10:e35 &amp;amp; nbd_port 1024

 

Our ipv6 is via a sixxs tunnel on our gateway router/firewall machine, and
our ipv6 network is 2a10:348...

The machine Im working with has a native ipv6 address on eth0.

 

The gateway machine has a stateful firewall that allows outgoing and
associated incoming traffic.

 

Ive set it to also permit incoming tcp &amp;amp; udp traffic to my test machine on
port 1024, but after realising that vifib is showing a completely different
target address, Im thoroughly confused

 

 

On the ipv4 side, what is the network in slapos.cfg used for  the
10.0.0.0/16? 

 

The only 10. Address visible is slapbr0

That shows a few hundred transmitted frames, zero received.

 

The slaptap interface&lt;/pre&gt;</description>
    <dc:creator>Robert Jenkins</dc:creator>
    <dc:date>2012-03-18T09:32:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1575">
    <title>Re: Installation problem - missing template.cfg</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1575</link>
    <description>&lt;pre&gt;Hi,

I have looked at the pages you linked to.

 

The lecture section on slave nodes appears to only give info on transferring
an existing node via a USB drive, not installing a node from scratch?

 

I have tried to follow sections 3.1 &amp;amp; 3.2 from this page:

https://www.tiolive.com/nexedi/web_site_module/erp5_community/osoe-SlapOS.Bo
ok

 

Section 3.1 appears to have worked OK, the machine has appeared under
servers on vifib.net as validated.

 

Section 3.2, adding vifib service, appears to have stalled with the status
Looking for a free partition.

 

Im now working with another PC, again Centos 6.2 x86_64

The file locations used are exactly as given in doc 3.1

 

Rob.

 

 

 

From: erp5-users-bounces&amp;lt; at &amp;gt;erp5.org [mailto:erp5-users-bounces&amp;lt; at &amp;gt;erp5.org] On
Behalf Of Jean-Paul Smets
Sent: 17 March 2012 15:17
To: Documentation and questions about the use of ERP5
Subject: Re: [Erp5-users] Installation problem - missing template.cfg

 

Hi,

Thanks for your questions. It helps improving the documenta&lt;/pre&gt;</description>
    <dc:creator>Robert Jenkins</dc:creator>
    <dc:date>2012-03-17T21:51:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1574">
    <title>Re: Installation problem - missing template.cfg</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1574</link>
    <description>&lt;pre&gt;Hi,

Thanks for your questions. It helps improving the documentation.

I updated the documentation ( http://www.erp5.com/download/linux) so 
that the page you found 
(http://www.erp5.com/user-Install.ERP5.With.SlapOS) is no longer 
referenced. Instead, the documentation is now:

http://www.erp5.com/developer-Allocate.SlapOS.ERP5.Instance 
&amp;lt;http://www.slapos.org/wiki/osoe-Lecture.SlapOS.Extended/developer-Allocate.SlapOS.ERP5.Instance&amp;gt;

and you need to read this before:

&amp;lt;http://www.erp5.com/download/linux&amp;gt;http://www.slapos.org/slapos-Lecture.Telecom 
(the chapters about installation of a SlapOS Slave node)

As the moto says, "if it is not tested, it is not working". Currently, 
the SlapOS installation process is not tested, so it will likely fail. 
One of us is working on a test system for SlapOS to make sure every day, 
automatically, that the build process works. But we lack hands so it is 
not possible to progress so fast. There is also a binary cache feature 
which prevents waiting for the build process &lt;/pre&gt;</description>
    <dc:creator>Jean-Paul Smets</dc:creator>
    <dc:date>2012-03-17T15:17:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1573">
    <title>Installation problem - missing template.cfg</title>
    <link>http://permalink.gmane.org/gmane.comp.python.zope.erp5.general/1573</link>
    <description>&lt;pre&gt;Hi,
Im trying to get ERP5 running on a Centos 6 based machine (Centos 6.2
x86_64 with all updates).

Going through the ERP5 install with SlapOS 
[http://www.erp5.com/user-Install.ERP5.With.SlapOS ]

Everything works OK up to step 8.

At step 9, running slapgrid, it bombs out with this error:

bin/slapgrid-cp -c /raid/slapos/slapos.cfg
INFO:ComputerPartitionProcessing:Processing computer partitions...
INFO:SVCBackend:Supervisord already running.
INFO:Partition:Installing Computer Partition slappart0...
ERROR:ComputerPartitionProcessing:Traceback (most recent call last):
  File
"/raid/slapos/eggs/slapos.core-0.19-py2.7.egg/slapos/grid/slapgrid.py", line
462, in processComputerPartitionList
    local_partition.install()
  File
"/raid/slapos/eggs/slapos.core-0.19-py2.7.egg/slapos/grid/SlapObject.py",
line 220, in install
    shutil.copy(template_location, config_location)
  File "/raid/slapos/parts/python2.7/lib/python2.7/shutil.py", line 116, in
copy
    copyfile(src, dst)
  File "/raid/slapo&lt;/pre&gt;</description>
    <dc:creator>Robert Jenkins</dc:creator>
    <dc:date>2012-03-17T13:33:49</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.python.zope.erp5.general">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.python.zope.erp5.general</link>
  </textinput>
</rdf:RDF>

