Archive for October, 2009

  • Jaldi Jaldi – Mumtaz fast food – Large images

    Date: 2009.10.31 | Category: jaldi jaldi, mumtaz | Response: 0









  • Jaldi Jaldi – Mumtaz fast food – Curry on the go review

    Date: 2009.10.31 | Category: curry on the go, jaldi jaldi, mumtaz, review | Response: 5


    Random piece of information: Jaldi translated to English = Soon
    Jaldi Jaldi is Mumtaz‘ latest brain child. After Mumtaz‘ success in the supermarket chains and their huge revenue growth the Mumtaz chain have made a brave decision to weather to current social climate.
    The branding is very well done.

    Mumtaz is not the most popular curry house in Bradford,
    the curry house serves mostly visitors to the City with local people tending to opt for less commercial curry houses such as the Sweet Centre or Akbars.

    The Starters were too hot & Curry was too cold. The chicken curry was not thoroughly reheated.
    Should chicken be reheated? Subway do it.. Short answer is yes.

    Has this devalued the Mumtaz brand?
    The curry tasted fine but it was disappointing that you couldn’t get a chipatti or roti version and that rice was compulsory.

    You would struggle to actually eat it “on the go” in the same way you could a sandwich or burger and the cardboard container absorbed quite a lot of the grease and moisture leaving a rather unpleasant appearance.

    Jaldi Jaldi is a great idea, and the concept is fantastic, the execution is lacking a bit of refinement. The prices were too high and at some point laughable especially by the majority of the Asian community in Bradford who are used to much better value for money when purchasing curry.

    The staff at the Bradford Forster Square shop were very polite and helpful. The whole experience was very easy and hastle free. I think that Jaldi Jaldi will do a good job catering for local shoppers and workers in the Forster Square area.
    Would I take a friend to Jaldi Jaldi to eat?

    Nah, Bradford has far too many good curry houses to rush a good curry. Curry as fast food to me and my friends is not a popular concept. Why would you want to rush something so beautiful and pleasant?
  • Shibboleth WAYFless URLs UKFederation

    Date: 2009.10.27 | Category: shibboleth, single sign on, sso, ukfederation, wayfless | Response: 0

    Shibboleth is a single sign on method used by UK schools.
    Shibboleth allows you to log into multiple services without the need to enter your username and password.

    Shibboleth WAYFLess URLS is a
    knowledge requirement for Shibboleth Service Providers and users. A shibboleth user may use a service frequently and want to skip the Identity provider selection page, a wayfless URL does exactly this.

    Example



    Copy and paste the above and replace %20 with ?

    Another example


    What bit do I need to change to configure my service to Primary Logon?
    https://wayf.ukfederation.org.uk/shibboleth-wayf/ukfull.wayf?target=cookie
    &providerId=urn:mace:ac.uk:sdss.ac.uk:provider:service:target.iay.org.uk
    &cache=perm&action=selection
    &origin=https://idp.primarylogon.co.uk/idp/shibboleth
    &shire=https://target.iay.org.uk/Shibboleth.sso/SAML/POST
    The bits in bold need changing.
  • Testing Shibboleth SP 2 on CentOS to the ukfederation w/ Godaddy certs

    Date: 2009.10.27 | Category: janet, shibboleth, testing | Response: 1

    Part 4. Testing (2 hours)

    Shibboleth can be started using /sbin/service shibd start
    Another option is to use: service shibd restart
    If the above doesn’t work try /usr/sbin/shibd -f

    If you are going to use different commands to start shibd ensure that multiple copies are not running by doing ps aux | grep shibd

    If you see shibd -f & /usr/sbin/shibd….. then you need to kill them and start one. I recommend using service shibd start.

    Log files will be in: /var/log/shibboleth/

    Check the shibd.log file for errors using this command: cat /var/log/shibboleth/shibd.log | grep ERROR
    Your resource URL is https://shib.yourdomain.com/secure
    Try browse to it.
    If you get nothing then Apache hasn’t started properly, check the apache logs.
    You should get something that starts with the shibboleth logo OR a WAYF login screen.
    If you get the WAYF screen the things are going great, if you get the Shibboleth error message then we need to make some more configuration changes. See your logs and continue reading.
    If you get “Cannot connect to shibd process, a site adminstrator should be notified.”
    then your SELINUX restrictions have kicked in. Check by doing
    cat /var/log/audit/audit.log | grep shib

    More info on SELinux can be found here or by using the sestatus command:

    A good output should look like this:
    SELinux status: enabled
    SELinuxfs mount: /selinux
    Current mode: permissive
    Mode from config file: enforcing
    Policy version: 21
    Policy from config file: targeted

    The fix for the SELinux problem is documented on Page 1 however I recommend being a bit more brutal if your environment is hyper fussy about security.

    Once you have a working setup you can browse to http://shib.yourdomain.com/Shibboleth.sso/Metadata to get your automatically generated Metadata and proceed with the UK Federation registration process.
    When you speak to the UK Federation to approve your registration you will be asked to run this command from /etc/shibboleth
    openssl x509 -sha1 -in sp.crt -noout -fingerprint

    You will be asked to provide them with the fingerprint so keep a record of this.
    Griffin goes “meow”.
  • Configuring Apache for Shibboleth on CentOS to the ukfederation w/ Godaddy certs

    Date: 2009.10.27 | Category: certificates, csr, godaddy, janet, key, openssl, shibboleth, ukfederation | Response: 1

    Part 3. Apache config. (1 hour)

    cd /etc/shibboleth
    openssl genrsa -des3 -out external.key 2048
    openssl req -new -key external.key -out external.csr
    

    The above will create a CSR request for your resource, when asked what the common name is enter something like shib.yourdomain.com - DO NOT use sp.yourdomain.com or the same common name as you used to register your SP!

    
    

    Edit the CSR and copy its contents into clipboard. Then login to your godaddy hosting account and paste the CSR request into your certificate request.

    Godaddy will do their thing then get back to you with a CRT a few files usually within 24 hours.
    
    
    When they get back to you with the files copy or download them the files to /etc/shibboleth
    
    
    Rename shib.yourdomain.com.crt to external.crt
    Rename gd_bundle.crt to external_int.crt and place it in /etc/shibboleth
    
    
    
    
     

    Edit /etc/httpd/conf.d/ssl.conf
    Replace
    SSLCertificateKeyFile /etc/pki/tls/private/localhost.key
    With
     SSLCertificateKeyFile /etc/shibboleth/external.key
    
    
    Replace
    SSLCertificateFile /etc/pki/tls/private/localhost.crt

    With
    SSLCertificateFile /etc/shibboleth/external.crt
    Under SSLCertificateKeyFile paste SSLCertificateChainFile /etc/shibboleth/external_int.crt
     
     
    Edit /etc/httpd/conf/httpd.conf
     
    Replace
     UseCanonicalName Off
    With
     UseCanonicalName On
    Find the line beginning with ServerName
    Comment it out
    Below it type ServerName shib.yourdomain.com:80

    /usr/sbin/apachectl restart
    
    
    /usr/sbin/apachectl start

    The above commands will restart Apache or start it if it hasn't already been started
    
    
    Edit  /etc/sysconfig/iptables & above all REJECT rules paste:
     
    -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
    -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 443 -j ACCEPT
    -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 8443 -j ACCEPT
    /sbin/service iptables restart
    
    
    If everything restarts without any errors then:
    Continue to the testing phase