Find the top ten IP list from the apache access log fileBilal MalikApr 1, 20201 min readWe can use the below command to find the top ten IP list from the apache access log in ubuntu awk '{ print $1}' access.log | sort | uniq -c | sort -nr | head -n 10 I hope it helps.#command #linux #ubuntu
Magento 2 CMS block with the same ID already existsI have seen the below error when I open cms block grid something went wrong with processing the default view and we have restored the...
How to generate bearer token - Magento 2 REST APIWe can generate the admin bearer token using the below command. Please run the below command in the terminal to generate a token. curl...
Magento 2 script tag and available options in layout xmlWe can add a script via layout XML file in Magento 2. The below format will stop the HTML parse until js downloaded and executed. <script...
ความคิดเห็น