• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer navigation

The Geek Diary

  • OS
    • Linux
    • CentOS/RHEL
    • Solaris
    • Oracle Linux
    • VCS
  • Interview Questions
  • Database
    • oracle
    • oracle 12c
    • ASM
    • mysql
    • MariaDB
  • DevOps
    • Docker
    • Shell Scripting
  • Big Data
    • Hadoop
    • Cloudera
    • Hortonworks HDP

Apache

WebLogic Server Domain: How To Disable the HTTP methods other than GET and POST (such as PUT, DELETE, etc.)

by admin

The objective is to disable the HTTP methods other than GET and POST (such as PUT, DELETE etc.) in a WebLogic Server domain. We can restrict the access to HTTP methods such as PUT or DELETE using security constraints in the <application_name>/WEB-INF/web.xml: <security-constraint> <display-name>Constraint-0</display-name> <web-resource-collection> <web-resource-name>mytest</web-resource-name> <description>Test</description> <url-pattern>/*</url-pattern> <http-method>PUT</http-method> <http-method>DELETE</http-method> </web-resource-collection> <auth-constraint> <role-name>NONE</role-name> </auth-constraint> <user-data-constraint> […]

Filed Under: Apache, oracle, WebLogic

PHPMyAdmin :: Existing configuration file (./config.inc.php) is not readable

by admin

The Problem I have just installed LAMP on my CentOS machine and while trying to access phpMyadmin thorugh cPanel, get below error: Existing configuration file (./config.inc.php) is not readable. The Solution The above error is due to the misconfiguration of permissions of the phpMyAdmin configuration file – /usr/local/cpanel/base/3rdparty/phpMyAdmin. Follow the steps outlined below in order […]

Filed Under: Apache

How to Increase the File Download Size Limit in Apache

by admin

The Problem You may encounter a request to increase the file download size limit in Apache server. Attempting to call a URL to upload a file, the following error occurs in Browser: ERROR Request entity too large. Request exceeds the capacity limit Apache error_log has the following error: Request content-length of 294135 is larger than […]

Filed Under: Apache, Linux

Primary Sidebar

Recent Posts

  • netselect Command Examples in Linux
  • netselect: command not found
  • netselect-apt Command Examples in Linux
  • netselect-apt: command not found

© 2023 · The Geek Diary

  • Archives
  • Contact Us
  • Copyright