Technical Solution
| 2
min read
For those who are new to the Linux Operating system (an open-source and mostly POSIX-compliant operating system modeled on UNIX, assembled under free and open-source software development model), may found difficulty in navigate to directories via Linux terminal.
You can install a nautilus-open-terminal to open the directory in the terminal if you are using Nautilus, which is the default file manager.
To install nautilus-open-terminal, follow the steps below.
Business Solution
| 1
min read
Like flowcharts, BPMN (Business Process Model and Notation) diagrams use a set of standard symbols. Each shape conveys a specific meaning and business context, where it’s most appropriate.
Swimlanes (or swimlane diagrams) are used to organize aspects of the process.
Business Solution
| 2
min read
Artifacts represent the pieces of information relevant to the model, and individual elements within a process. There are three artifact types, they are annotations, groups, and data objects. All three were used to augment and describe BPMN processes.
Annotations allow modeler to describe the additional flow parts of a model/notation.
Groups organize tasks/processes that have significance in the overall process.
Business Solution
| 2
min read
Like flowcharts, BPMN (Business Process Model and Notation) diagrams use a set of standard symbols. Each shape is having a specific meaning and business context where it’s most appropriate. If you become overwhelmed while drawing your BPMN chart, simply check this guide.
Drupal Technical
| 5
min read
Docker is an open source platform for system administrators and developers to build, ship and to run distributed applications, whether its on the cloud, data center VMs, or on the laptops. Docker helps to automate the deployment of Linux applications inside software containers.
Technical Solution
| 3
min read
Docker is an open-source platform for system administrators and developers to build, ship, and run distributed applications, whether it's on the cloud, data center VMs, or laptops. Docker helps to automate the deployment of Linux applications inside software containers.
This write-up helps you to learn, install, upgrade, and un-installation of Docker engine.
Docker is supported on the following Ubuntu operating systems:
Drupal Technical
| 3
min read
Everyone knows Drush is a very important tool in Drupal development, to execute things faster and to manage Drupal websites remotely. Drupal specifically built its shell function to update its configurations, managing modules, running drupal updates, etc.
Drupal Technical
| 2
min read
While setting up local environments for Drupal 8, everyone may find difficulty in login to the site, if the password is unknown
In Drupal core there is a script file that return the hashed password, which is core/scripts/password-hash.sh.
Run the following command to get the hashed string for '123' in the terminal.
./core/scripts/password-hash.sh 123
Update the returned string in the password field in the user's table for required users via command line or any MySQL (or any database systems like PostgreSQL, MariaDB, MongoDB) GUI tools.
Technical Solution
| 2
min read
Have you ever faced an error 'Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock', while trying to log in to MySQL as any user?
You can login to your MySQL via the following terminal command.
mysql -u root -p
or
mysql -u root -pPassword
Its recommended, not to use passwords in terminal command, due to privacy reasons.
Verify that, your MySQL is running. If not, start service by typing following command in your Linux terminal.
sudo service mysql start
or
Technical Solution
| 2
min read
PHP 7 is promising substantial improvement in performance over previous versions of PHP, which was released on 2015, December 3rd. Those who are interested in using PHP 7, can easily update your PHP version.