If we face the following error while running hadoop jobs http://<masternode ip>:50030/jobtracker.jsp Error: “Shuffle Error: Exceeded MAX_FAILED_UNIQUE_FETCHES; bailing-out.” Description: Respective box name <machine name> is not updated in all the cluster configuration files (hadoop and /etc/hosts) Steps to resolve: Step 1: Stop all the hadoop services in master node hduser: /usr/local/hadoop/bin/stop-all.sh Step 2: Edit the …
March 2013 archive
Permanent link to this article: https://blog.openshell.in/2013/03/hadoop-error-shuffle-error-exceeded-max_failed_unique_fetches-bailing-out/
Mar 20
Installation of Yii
YII – Yes It Is YII is a high-performance PHP framework best for developing large-scale Web applications. Download the latest stable version from http://www.yiiframework.com/ Extract the folder and place it under the webroot location Eg., /var/www/ in linux and htdocs in windows php <path to yii folder>/framework/yiic.php webapp <applicationname> Additionally set the path for php in …
Permanent link to this article: https://blog.openshell.in/2013/03/installation-of-yii/
Mar 17
Installing Django on Ubuntu
About Django: Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design. Developed by a fast-moving online-news operation, Django was designed to handle two challenges: the intensive deadlines of a newsroom and the stringent requirements of the experienced Web developers who wrote it. It lets you build high-performing, elegant Web …
Permanent link to this article: https://blog.openshell.in/2013/03/installing-django-on-ubuntu/
Mar 17
How to automate whodidit behaviour and timestamps in yii ActiveRecord model?
To automate whodidit and timestamps in yii activerecord model using beforesave() method. If the rule validation got success then only the beforesave() method will invoke. Without satisifying rule() in activerecord model, this method will not work. [php] protected function beforeSave() { if(parent::beforeSave()) { if($this->isNewRecord) { $this->created_on = time(); $this->created_by = (int)Yii::app()->user->id; } $this->updated_on = time(); …
Permanent link to this article: https://blog.openshell.in/2013/03/how-to-automate-whodidit-behaviour-and-timestamps-in-yii-activerecord-model/
Mar 17
How to automate timestamps in activerecord using yii
There are many ways to automate the setting of timestamps in yii ActiveRecord models. In this we are representing three ways here. 1) Update via model’s rules: [php] /** * @return array validation rules for model attributes. */ public function rules() { return array( array(‘title’,’length’,’max’=>255), array(‘title, created_at, updated_at’, ‘required’), array(‘updated_at’,’default’, ‘value’=>new CDbExpression(‘NOW()’), ‘setOnEmpty’=>false,’on’=>’update’), array(‘created_at,updated_at’,’default’, ‘value’=>new …
Permanent link to this article: https://blog.openshell.in/2013/03/how-to-automate-timestamps-in-activerecord-using-yii/
Mar 17
mysql2 gem for windows error
By installing Development Kit and MySql Connector: To install Development Kit: 1. Left double-click the self-extracting executable (SFX) to install the DevKit artifacts into. For example, C:DevKit. 2. cd <DEVKIT_INSTALL_DIR> 3. ruby dk.rb init to generate the config.yml. Your installed Rubies will be listed there (only those installed by a RubyInstaller package are detected at …
Permanent link to this article: https://blog.openshell.in/2013/03/mysql2-gem-for-windows-error/
Permanent link to this article: https://blog.openshell.in/2013/03/whats-the-difference-between-list-tuples-and-dictionaries-in-python/
Mar 15
Execute Shell file in linux server
chmod Command: Run Shell Script In Linux Set an executable permission using the chmod command as follows: [code]chmod +x file.sh[/code] Now your can run your .sh file as follows: Execute Shell Script Using . ./ (dot space dot slash) [code]./file.sh[/code] You can also execute a unix shell script by specifying the interpreter in the command …
Permanent link to this article: https://blog.openshell.in/2013/03/execute-shell-file-in-linux-server/
Mar 15
How to configure python with apache in ubuntu?
Common Gateway Interface(CGI) helps you run python application in apache webserver in ubuntu. Follow the steps which help you to configure python with apache webserver. Step 1: [code] sudo mkdir /var/www/python [/code] Step 2: [code] sudo vim /etc/apache2/sites-available/default [/code] Step 3: Add the following lines in “default” file and save the file. [code] ScriptAlias /python/ /var/www/python/ …
Permanent link to this article: https://blog.openshell.in/2013/03/how-to-configure-python-with-apache-in-ubuntu/
Mar 15
how to install easy_install in ubuntu?
To installing easy_install in ubuntu is very easy, just follow the instructions below. [code] $ sudo apt-get install python-setuptools [/code] And that’s it! Yes, that’s all you need to do and you will have easy_install available at the command prompt. In case you are wondering, easy_install is a Python module which comes as a part …
Permanent link to this article: https://blog.openshell.in/2013/03/how-to-install-easy_install-in-ubuntu/
- 1
- 2