For
It has been said in API documentation that send data like below:
There is an online tool for exactly that specific purpose (encode, decode base64).
Go to link below:
- https://www.base64encode.org/
#base64 #base64encode #client_id #client_secret #api #rest #webservice
REST APIs
it usually happens to encode client-id and client-secret to send to an endpoint to get access token.It has been said in API documentation that send data like below:
Basic BASE64_ENCODEDED_VALUE_OF(CLIENT_ID:CLIENT_SECRET)
There is an online tool for exactly that specific purpose (encode, decode base64).
Go to link below:
- https://www.base64encode.org/
#base64 #base64encode #client_id #client_secret #api #rest #webservice
Base64 Encode
Base64 Encode and Decode - Online
Encode to Base64 format or decode from it with various advanced options. Our site has an easy to use online tool to convert your data.
To get on going processes in mysql client and see which queries are taking longer use:
It will show you a table with list of all connection from different hosts (if applicable) and their
#mysql #client #kill #processlist #sysadmin #dba #linux
SHOW PROCESSLIST;
It will show you a table with list of all connection from different hosts (if applicable) and their
PID
number. You can use this number to kill a process that consumes your server CPU, Memory, etc.:KILL <pid>;
#mysql #client #kill #processlist #sysadmin #dba #linux