Run following command to enable credential caching:
$ git config credential.helper store
Afterwards, make some changes, commit and try with git push.
No more relogin.
$ git config credential.helper store
in:inbox AND is:unread AND -in:starred
As a result, the key you have in your local PC, inside known_hosts becomes invalid. The moment you try to ssh to Server A again, you will be prompted with :@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! Someone could be eavesdropping on you right now (man-in-the-middle attack)! It is also possible that the RSA host key has just been changed. The fingerprint for the RSA key sent by the remote host is a7:a8:f2:97:94:33:58:b7:9d:bc:e0:a6:6b:f7:0a:29. Please contact your system administrator. Add correct host key in /home/ramesh/.ssh/known_hosts to get rid of this message. Offending key in /home/ramesh/.ssh/known_hosts: 6 Permission denied (publickey,password).The solution is to edit the file known_hosts and remove the existing key of Server A,
using your preferred text editor i.e. vi or vim or nano or notepad When you try to ssh to Server A again, the new key of Server A will be saved into
your local file known_hosts.
ELSE
select something from TABLE_B;
END IF;
More from StackOverflow :IF NOT EXISTS (SELECT ...)
BEGIN
INSERT ...
END
And with more control :IF EXISTS (SELECT ...)
BEGIN
PRINT 'Do nothing.';
END
ELSE
BEGIN
INSERT ...
END
Tomcat can use the Apache Portable Runtime to provide superior scalability, performance, and better integration with native server technologies. The Apache Portable Runtime is a highly portable library that is at the heart of Apache HTTP Server 2.x. APR has many uses, including access to advanced IO functionality (such as sendfile, epoll and OpenSSL), OS level functionality (random number generation, system status, etc), and native process handling (shared memory, NT pipes and Unix sockets).
tcnative-1.dll
(or libtcnative.so
for Linux) and put it in the bin folder, and add a system property to the launch configuration of the tomcat server in eclipse. -Djava.library.path=c:\dev\tomcat\bin
mklink /H destination-file-address target-file-address
mklink /J destination-folder-address target-folder-address
ON DELETE SET NULL
is not defined to be null. So make sure that the column is set default nullStatic Website | Dynamic Website |
---|---|
Prebuilt content is same every time the page is loaded. | Content is generated quickly and changes regularly. |
It uses the HTML code for developing a website. | It uses the server side languages such as PHP,SERVLET, JSP, and ASP.NET etc. for developing a website. |
It sends exactly the same response for every request. | It may generate different HTML for each of the request. |
The content is only changes when someone publishes and updates the file (sends it to the web server). | The page contains "server-side" code it allows the server to generate the unique content when the page is loaded. |
Flexibility is the main advantage of static website. | Content Management System (CMS) is the main advantage of dynamic website. |
GET | POST |
---|---|
is used to retrieve data from web server | is used to insert/update data into web server. |
is not secured because data is exposed in URL bar. | is secured because data is NOT exposed in URL bar. |
is used typically for viewing something, without changing it | is used for changing something |
data is sent through the header (can be seen in URL bar) www.ask.com/register.jsp?name1=value | data is sent in body (can NOT be seen in URL bar) www.ask.com/registerDao.jsp |
Front End | Back End |
---|---|
Refers to the stuff that you actually see on the browser aka the UI Interface of the website. | Refers to the "brain" of the application which live on the server |
Use HTML, CSS, and JavaScript that are supported by the browser (client) | Use other languages such as Java and PHP that are supported by the server |