Posts by Nilton OS • 76 points
13 posts
-
0
votes3
answers2121
views -
0
votes1
answer143
viewsA: Configure Tomcat to force Https
You can change the conf/server.xml and leave it at that: <Connector port="8080" enableLookups="false" redirectPort="8443" /> Or <Connector port="80" enableLookups="false" redirectPort="443"…
-
0
votes3
answers22495
viewsA: How do I start Tomcat as a service on Linux?
Follow the step by step for installing Tomcat 9 and Service on Linux, updated script is on this link. #!/bin/bash ### Install Tomcat 9 + JRE8 on Ubuntu, Debian, CentOS, OpenSUSE 64Bits ### URL com…
-
-3
votes6
answers7179
views -
1
votes7
answers3901
viewsA: What does incrementing mean?
The act of incrementing is: add one more value to the initial value, so the final value will have one more value. // A variavel valor é definida com 1. var valor = 1; // A variável valor é…
terminologyanswered Nilton OS 76 -
0
votes1
answer519
viewsQ: Record screen with ffmpeg
What is the command of ffmpeg that records the computer screen, because before it had a command via command line that made this recording without need of other software, only pure ffmpeg.
-
0
votes2
answers2695
viewsA: Perform backup automatico Mysql
You can use this Python script that I created, it backs up all databases. Download it, run a chmod +x backup_mysql.py and put in the folder /usr/local/bin/…
-
0
votes2
answers53
viewsA: Apache problem - 2 domains
You can try it like this, on Virtualhost put the Server IP, access the Apache2 log that is in the /var/log/, to see what error occurs. <VirtualHost IP_DO_SERVIDOR:80> ServerAdmin…
-
0
votes3
answers83
views -
1
votes2
answers116
viewsA: ERROR - Cannot stat file /proc/32641/fd/338 - What is the utility of the proc directory?
The /proc in Linux is a virtual directory that serves as "diagnostic" and real-time kernel settings. The file system /proc is a special directory where all kernel debugging information is located.…
-
0
votes1
answer49
viewsA: Code analysis in production
But in case, you need to measure peak access on these Web Servers, with rrdtool, Cacti + mrtg, you will get the graphics of these accesses. Then you have the disk speed and amount of ram memory and…
-
2
votes2
answers514
views -
1
votes1
answer377
viewsA: What are files with extension "Sock" for?
For external connections yes, but this has to be done by the socket owner software. Sockets are communication points on the same or different computers to exchange data. They are supported by Unix,…