Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours scrolling social media and waste money on things we forget, but won’t spend 30 minutes a day earning certifications that can change our lives.
Master in DevOps, SRE, DevSecOps & MLOps by DevOpsSchool!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

Use of p4 change commands

rajeshkumar created the topic: Use of p4 change commands Updating changelist number p4 change To View the changelist info p4 change -o To Delete the changelist number p4 change -d Regards, Rajesh Kumar Twitt me @ twitter.com/RajeshKumarIn

Purely numeric name not allowed

rajeshkumar created the topic: Purely numeric name not allowed Issues : Purely numeric name not allowed. Solution: This error can be happen when Purely numeric name is mentioned in Group name, Specname, Username etc. This should be verified using “p4 info” Also, check if following hostname has numeric value which was set in p4 info … Read more

Configuring line-ending settings in perforce

rajeshkumar created the topic: Configuring line-ending settings in perforce Unix uses one byte, 0x0A (LineFeed), while windows uses two bytes, 0x0D 0x0A (Carriage Return, Line feed). To Find the files which has Windows line endings egrep -l $’\r\n’ * in Bash To Convert files from DOS TO unix dos2unix -U file if the file has … Read more

Shutting Down the Perforce Server

rajeshkumar created the topic: Shutting Down the Perforce Server very useful links for Shutting Down the Perforce Server safely….. answers.perforce.com/articles/KB_Article…-the-Perforce-Server Regards, Rajesh Kumar Twitt me @ twitter.com/RajeshKumarIn

Killing Perforce Server Child Processes

rajeshkumar created the topic: Killing Perforce Server Child Processes Very good articles on Killing Perforce Server Child Processes…. answers.perforce.com/articles/KB_Article…rver-Child-Processes but the next questions is – How to Identify whether a command is in its compute phase or not before kiling? Regards, Rajesh Kumar Twitt me @ twitter.com/RajeshKumarIn Balaji.scm replied the topic: Moving only specific projects … Read more

Perforce The file name is too long.

scmuser created the topic: Perforce The file name is too long. I am getting following error while syncing long path files in Windows 7 ” The file name is too long. ” Any workaround? rajeshkumar replied the topic: Perforce The file name is too long. The answer can be found in – answers.perforce.com/articles/KB_Article…with-Long-Path-Names Regards, Rajesh … Read more

Some Common Perforce Error

rajeshkumar created the topic: Some Common Perforce Error Problem: Perforce client error: TCP send failed. write: socket: Connection reset by peer Solutions: These issues occur only when perforce client and perforce server is not able to receive or sent data packets to each other. This can be due to various reason. Check following… 1. Fix … Read more

Script to remove Perforce user which is LDAP disable

rajeshkumar created the topic: Script to remove Perforce user which is LDAP disable >> p4 users | cut -f 1 -d ” ” | grep -v ^user | xargs -n 1 /var/tmp/ldaplookupuser.pl Content of ldaplookupuser.pl #!/usr/bin/perl my ($InUser) = shift; # print “[INFO] Validating Perforce user – ${InUser}\n”; my ($LookupUser)=`ldapsearch -LLL -x uid=${InUser} uid`; print … Read more