I am Palakkottu Binoy https://palakkottubinoy.com/ Blog Wed, 07 Dec 2022 11:46:19 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.2 https://i0.wp.com/palakkottubinoy.com/wp-content/uploads/2022/12/fav-icon.png?fit=32%2C32&ssl=1 I am Palakkottu Binoy https://palakkottubinoy.com/ 32 32 214770318 Fixed With Growth MindSet https://palakkottubinoy.com/fixed-with-growth-mindset/ https://palakkottubinoy.com/fixed-with-growth-mindset/#respond Wed, 07 Dec 2022 11:46:18 +0000 http://palakkottubinoy.com/?p=25 Transform Mindset into a Automation Oriented/Devops Audience of this Blog: Those who works in Traditional Technologies and in transformation phase to Automation/Devops Area. Today’s IT is drastically changed in terms of technologies & Practice. As you know, the word “Devops”, “Cloud”, “Automation” is now very familar and Popular in the IT area. It is our […]

The post Fixed With Growth MindSet appeared first on I am Palakkottu Binoy.

]]>
Transform Mindset into a Automation Oriented/Devops

Audience of this Blog: Those who works in Traditional Technologies and in transformation phase to Automation/Devops Area.

Today’s IT is drastically changed in terms of technologies & Practice. As you know, the word “Devops”, “Cloud”, “Automation” is now very familar and Popular in the IT area. It is our time to transform our mindset to to Automation, which means

Whenever we get a task or problems or issues, we need to ask certain valid “WH” questions(How, What, Why, When, Where) with in ourselves.

An example like

a) How we can Automate this particular task to improve time Consumption, Cost etc

b) What technologies or Devops tools or Scripting Languages we can use  to Automate.

c) Why we are going to use specific technologies to auotmate , a comparison of technologies.

d) When is the target date that we are going to complete it.

All such above questions need to arise in our mind when we get a task or problems inorder to automate or minimize the problems or any tasks.

Moreover, I beleive we should transform our mindset into a Automation/Solution oriented mindset rather Just a support oriented to reach into Devops/Automation practice level maturity.

The change is very difficult and we all resist change that is general human nature but Change is must , here are few tips that we can shape our mindset that I took it from knowledge in reading different articles, books  etc.

What is a Mindset?

Our mindset is the sum of our knowledge, including beliefs and thoughts about the world and ourself in it. It is our filter for information that we get in and put out.

To Develop the right mindset is the way learning something new and strip out the most relevant information

And I think a good mindset will reflect reality and will help us. But not in that order. I think the order has to be like this:

a) Find the beliefs that are most supportive

b) Check if the beliefs are in harmony with reality

We want to use our mindset to make a positive change. If you believe I am a successful, you will act in that way.

If you believe , I want to be a successful , you will act in this way too: like you are NO successful.

How to Change Your Mindset.

1) Get the Best Information Only

2) Role Model the Best People

3) Examine Your Current Beliefs

4) Shape Your Mindset with Vision and Goals

5) Find Your Voice

6) Protect Your Mindset

1) Get the Best Information Only

Try to find the very best information in your field. Then focus on learning this information only.

The Good: Reading great books/information products and some great blogs.

2) Role Model the Best People

Look for the best people in your field and try to model what they did right. Adopt their kind of thinking and mindset. Follow them.

3) Examine Your Current Beliefs

Examine your mindset by looking at your current belief-system.

Are these beliefs supporting you? Or are there self limiting beliefs? You have to identify those possible blocks and turn them around.

To uncover your beliefs ask yourself the right questions about where you want to go and what is standing in your way right now.

4) Shape Your Mindset with Vision and Goals

A proactive approach to build your mindset is to clearly see where you want to go and set clear goals.

5) Find Your Voice

One of the most beautiful things is when you find your very own way, something what you could call finding your voice

To help you find this voice, answer these 4 question.

1. What are you good at? That’s your mind.

2. What do you love doing? That’s your heart.

3. What need can you serve? That’s the body.

4. And finally, what is life asking of you? What gives your life meaning and purpose? What do you feel like you should be doing? In short, what is your conscience directing you to do? That is your spirit.

6) Protect Your Mindset

One thing you have to do is to protect your mindset against from the person who habitually expresses negative or pessimistic views and people who want to drag you down.

You also have to protect it against bad information. Keeping your confidence is a big thing.

The post Fixed With Growth MindSet appeared first on I am Palakkottu Binoy.

]]>
https://palakkottubinoy.com/fixed-with-growth-mindset/feed/ 0 25
Keytool , Openssl, SSLPOKE https://palakkottubinoy.com/keytool-openssl-sslpoke/ https://palakkottubinoy.com/keytool-openssl-sslpoke/#respond Wed, 07 Dec 2022 11:41:33 +0000 http://palakkottubinoy.com/?p=23 I was playing keystore and keytool today to add certifcate.

The post Keytool , Openssl, SSLPOKE appeared first on I am Palakkottu Binoy.

]]>
I was playing keystore and keytool today to add certifcate.

  1. Openssl command to export certifcate from remote url and save to pubcert.crt  : openssl s_client -connect  <domain>:443 -showcerts < /dev/null | sed -ne “/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p” > /tmp/pubcert.crt
  2. keytool -import -trustcacerts -alias <aliasname> -file /tmp/pubcert.crt -keystore test.jks -storepass <passpword> -noprompt
  3. To test the connectvity using SSL poke:  java -Djavax.net.ssl.trustStore=<path of jks> SSLPoke  <domainname> 443
    Successfully connected
  4. SSL Poke Installation : https://confluence.atlassian.com/kb/unable-to-connect-to-ssl-services-due-to-pkix-path-building-failed-779355358.html

The post Keytool , Openssl, SSLPOKE appeared first on I am Palakkottu Binoy.

]]>
https://palakkottubinoy.com/keytool-openssl-sslpoke/feed/ 0 23
How to Delete a Git Branch in Local and Remote https://palakkottubinoy.com/how-to-delete-a-git-branch-in-local-and-remote/ https://palakkottubinoy.com/how-to-delete-a-git-branch-in-local-and-remote/#respond Wed, 07 Dec 2022 11:39:18 +0000 http://palakkottubinoy.com/?p=21 Today, I came to knew about how to delete  Git unsed branches from our local and remote repo. Here are few commands that i used Refer URL : https://stackoverflow.com/questions/2003505/how-do-i-delete-a-git-branch-both-locally-and-remotely

The post How to Delete a Git Branch in Local and Remote appeared first on I am Palakkottu Binoy.

]]>
Today, I came to knew about how to delete  Git unsed branches from our local and remote repo.

Here are few commands that i used

  1. git branch  -to see what all branches we have
  2. git push origin –delete my_branch  – to delete branch from remote
  3. git branch – if you can see still your branch in local
  4. git branch – D my_branch – Delete my branch locally too

Refer URL : https://stackoverflow.com/questions/2003505/how-do-i-delete-a-git-branch-both-locally-and-remotely

The post How to Delete a Git Branch in Local and Remote appeared first on I am Palakkottu Binoy.

]]>
https://palakkottubinoy.com/how-to-delete-a-git-branch-in-local-and-remote/feed/ 0 21
Docker Commands https://palakkottubinoy.com/docker-commands/ https://palakkottubinoy.com/docker-commands/#respond Wed, 07 Dec 2022 11:38:43 +0000 http://palakkottubinoy.com/?p=19 I have found docker commands which is useful Refer Link : https://linuxvmaws.blogspot.in/2017/11/8-top-important-docker-commands.html?spref=fb Refer Link:https://docs.docker.com/engine/reference/commandline/docker/ Three ways of devops : https://www.docker.com/sites/default/files/WP_Docker%20and%20the%203%20ways%20devops.pdf

The post Docker Commands appeared first on I am Palakkottu Binoy.

]]>
I have found docker commands which is useful

Refer Link : https://linuxvmaws.blogspot.in/2017/11/8-top-important-docker-commands.html?spref=fb

Refer Link:https://docs.docker.com/engine/reference/commandline/docker/

Three ways of devops : https://www.docker.com/sites/default/files/WP_Docker%20and%20the%203%20ways%20devops.pdf

The post Docker Commands appeared first on I am Palakkottu Binoy.

]]>
https://palakkottubinoy.com/docker-commands/feed/ 0 19
Securing JBOSS JMX and WebConsole https://palakkottubinoy.com/securing-jboss-jmx-and-webconsole/ https://palakkottubinoy.com/securing-jboss-jmx-and-webconsole/#respond Wed, 07 Dec 2022 11:38:14 +0000 http://palakkottubinoy.com/?p=17 Today, I have worked with my colleague to secure jboss jmx and webconsole. Here is the link which we referred

The post Securing JBOSS JMX and WebConsole appeared first on I am Palakkottu Binoy.

]]>
Today, I have worked with my colleague to secure jboss jmx and webconsole. Here is the link which we referred

https://developer.jboss.org/thread/144889

The post Securing JBOSS JMX and WebConsole appeared first on I am Palakkottu Binoy.

]]>
https://palakkottubinoy.com/securing-jboss-jmx-and-webconsole/feed/ 0 17
HOW TO: TCPDUMP AND WIRESHARK https://palakkottubinoy.com/how-to-tcpdump-and-wireshark/ https://palakkottubinoy.com/how-to-tcpdump-and-wireshark/#respond Wed, 07 Dec 2022 11:37:17 +0000 http://palakkottubinoy.com/?p=15 One of my favorite Linux command to analyze Packet capture is tcpdump and tool “Wireshark” to analyze or view  the packets. Command to find source ip tcpdump -nni any ip net ip/cidr

The post HOW TO: TCPDUMP AND WIRESHARK appeared first on I am Palakkottu Binoy.

]]>
One of my favorite Linux command to analyze Packet capture is tcpdump and tool “Wireshark” to analyze or view  the packets.

12 Tcpdump Commands – A Network Sniffer Tool

Command to find source ip tcpdump -nni any ip net ip/cidr

The post HOW TO: TCPDUMP AND WIRESHARK appeared first on I am Palakkottu Binoy.

]]>
https://palakkottubinoy.com/how-to-tcpdump-and-wireshark/feed/ 0 15
Python https://palakkottubinoy.com/python/ https://palakkottubinoy.com/python/#respond Wed, 07 Dec 2022 11:35:48 +0000 http://palakkottubinoy.com/?p=12 Python is one of the favourite language that I am learning in these days after Shell/Bash Script. * General Purpose High level programming Language* Developed Guido Van Rossam in 1989 at Netherland* Officially announced 1991. DOB : Feb 20th 1991 Python is : – Functional Programming Language from C.– Object Oriented Programming Language from C++– Scripting […]

The post Python appeared first on I am Palakkottu Binoy.

]]>
Python is one of the favourite language that I am learning in these days after Shell/Bash Script.

* General Purpose High level programming Language
* Developed Guido Van Rossam in 1989 at Netherland
* Officially announced 1991. DOB : Feb 20th 1991

Python is :

– Functional Programming Language from C.
– Object Oriented Programming Language from C++
– Scripting Language features from perl & shell
– Modular Programming features from Modula-3

We can refer https://www.python.org/ as a start.

Python 2.7.14 is the latest bug fix release in the Python 2.7.x series.
Python 3.6.5 is the latest release in the Python 2.7 series.

The post Python appeared first on I am Palakkottu Binoy.

]]>
https://palakkottubinoy.com/python/feed/ 0 12
What is Terraform https://palakkottubinoy.com/what-is-terraform/ https://palakkottubinoy.com/what-is-terraform/#respond Wed, 07 Dec 2022 11:35:16 +0000 http://palakkottubinoy.com/?p=11 I ‘m in progress in learning Devops tools, technologies ,concepts eventually since last 2 years in the areas of Cloud – Amazon Web ServicesConfiguration Management Tools Like Puppet , AnsibleContinous Integration/Deployments tools Like Jenkins, Bamboo, Bitbucket, GitLabScripting Language in Python Latest One which I have got chance a hands on in creating few resources , […]

The post What is Terraform appeared first on I am Palakkottu Binoy.

]]>
I ‘m in progress in learning Devops tools, technologies ,concepts eventually since last 2 years in the areas of

Cloud – Amazon Web Services
Configuration Management Tools Like Puppet , Ansible
Continous Integration/Deployments tools Like Jenkins, Bamboo, Bitbucket, GitLab
Scripting Language in Python

Latest One which I have got chance a hands on in creating few resources , Variables & providers to create few EC2 instances in the cloud AWS using Terraform.

What is Terraform
Terraform in one word definition . It is an hashiCorp product Orchestration tool for Creating Infrastructure as Code.

For more detailed details, Please go through https://www.terraform.io/intro/getting-started/build.html

The post What is Terraform appeared first on I am Palakkottu Binoy.

]]>
https://palakkottubinoy.com/what-is-terraform/feed/ 0 11
7 Powerful Ways to Charge our Life With Positivity https://palakkottubinoy.com/7-powerful-ways-to-charge-our-life-with-positivity/ https://palakkottubinoy.com/7-powerful-ways-to-charge-our-life-with-positivity/#respond Wed, 07 Dec 2022 11:34:22 +0000 http://palakkottubinoy.com/?p=9 Negative thoughts hurts our ability to process information and think clearly. Thinking negatively about your problems not only doesn’t help solve anything, it actually makes it harder for you to think of a helpful solution. Every conscious thought that we have is recorded by our subconscious mind. Our subconscious mind does not question or argue […]

The post 7 Powerful Ways to Charge our Life With Positivity appeared first on I am Palakkottu Binoy.

]]>
Negative thoughts hurts our ability to process information and think clearly. Thinking negatively about your problems not only doesn’t help solve anything, it actually makes it harder for you to think of a helpful solution.

Every conscious thought that we have is recorded by our subconscious mind. Our subconscious mind does not question or argue with the validity of a thought. It literally takes our word for it. So, if we say, “I am tired or I am broke,” it just says, “Yes, you are tired – Yes, you are broke,” and your thoughts are accurately recorded.

Your subconscious mind then communicates directly with the quantum mind that manifests your reality. Just like the subconscious mind, the quantum mind always says yes.

Always Think Positively which boost our subconscious mind more powerful

“A man is but the product of his thoughts what he thinks, he becomes.” – Mahatma Gandhi

7 Powerful Ways to Supercharge Your Life With Positivity

1. Read

Read books that inspire, encourage, and motivate you. It doesn’t really matter if you already know what the book is all about. What matters is that you continually feed your mind with positive and inspirational material. The more time you can spend in the land of the positive, the better.

2. Listen

The second thing I personally really started like to do listen to audio programs. Some great authors that I personally started enjoy the videos of Brian Tracy, Earl Nightingale, and Jim Rohn.

One of the youtube video of Brain Tracy which I like is https://www.youtube.com/watch?v=VmihXD4HMNI

3. Focus

Focus on the positive instead of dwelling upon the negative. Most people concentrate on the problems at hand instead of the solutions. It has been shown that most of our worries never even happen. That means that you are worrying and making yourself feel stressed out for no reason at all.

Next time you feel the negativity come on, flip it over and think about the positive aspect of it and what you can do about it. For example, instead of asking “Why me?” or “Why am I so unlucky?” ask yourself “What can I learn from this?” and “How can I turn this around?”

4. Release

There are some great ways to release negative thought patterns and negative beliefs. Some of my favorites are EFT, The Work, and Sedona Method. I recommend you try one of the methods above. I personally really enjoy working with EFT right now, which is short for Emotional Freedom Techniques. The more negativity you can release from your life the more peace you will feel inside and the more positive you will be.

5. Habits

What kind of habits do you have right now that cause negativity in your life? What would your life look like if you started to change them? When we make the decision to change a habit, it almost happens by itself, but we have to be determined to make it happen.

6. Goals

The majority of people never set any goals. I know that it can be scary to decide on where we want to go, and we want to leave our options open, but nothing happens until you get clear about where you want to go and what you want to do. It doesn’t matter if our goals change. In fact, that’s normal, and one of the reasons why we should keep tweaking our goals as the seasons change.

One of the best ways to set goals is to use the S.M.A.R.T, which stands for:

Specific
Measurable
Attainable
Realistic
Timely
Our goals will gives us focus and purpose, so make sure we set goals in each area of our life. The most common areas are health, relationships, career, and personal development.

7. Passion

Following my passion and moving towards the life of my dreams, the positivity in my life has magically increased. Most people are doing things they don’t want to do, and they never even take a step towards finding and going after their passion.

Don’t let this be you. Go after your dreams, even if it means only being able to put aside 10 minutes a day. If you start today, you can build upon what you have, but if you keep putting it off, it will never happen.

Increasing the positivity in your life is simple, but not easy. You have to take responsibility and make it happen, because no one will do it for you.

The post 7 Powerful Ways to Charge our Life With Positivity appeared first on I am Palakkottu Binoy.

]]>
https://palakkottubinoy.com/7-powerful-ways-to-charge-our-life-with-positivity/feed/ 0 9
INSPIRATIONAL RUNNER! NEVER GIVE UP! https://palakkottubinoy.com/inspirational-runner-never-give-up/ https://palakkottubinoy.com/inspirational-runner-never-give-up/#respond Wed, 07 Dec 2022 11:33:10 +0000 http://palakkottubinoy.com/?p=5 An amazing video of Derek Redmond, the Olympic runner. Motivational and Inspirational!

The post INSPIRATIONAL RUNNER! NEVER GIVE UP! appeared first on I am Palakkottu Binoy.

]]>
An amazing video of Derek Redmond, the Olympic runner. Motivational and Inspirational!

The post INSPIRATIONAL RUNNER! NEVER GIVE UP! appeared first on I am Palakkottu Binoy.

]]>
https://palakkottubinoy.com/inspirational-runner-never-give-up/feed/ 0 5