Fulltext results:
- Increase the Tomcat Upload Limit
- e ''WEB-INF/web.xml'' within the "manager"-App: <code xml> <multipart-config> <!-- 50MB max --> <max-file-size>52428800</max-file-size> ... threshold>0</file-size-threshold> </multipart-config> </code> To increate the limit to 75MiB change the file like this: <code xml> <multipart-co
- SSH
- c Key Authentication only ===== === /etc/ssh/sshd_config === Make sure that your SSH config file (''sshd_config'') contains these settings: <code> PubkeyAuthentication yes PasswordAuthentication no </code> I
- List Open Ports
- en ports together with the listening processes: <code bash> netstat -tulpn </code> Here is an example output: <code> Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Add
- Set the Timezone on Debian @info:sysadmin:debian
- Timezone on Debian ====== Just run the following command as ''root'' (use ''su'' or ''sudo''): dpkg-reconfigure tzdata {{tag>sysadmin linux debian timezone configure}}