Questions tagged [server-administration]

139 questions
0
votes
1 answer

Web server with multiple virtual servers

I'm looking for a solution for the distribution of requests on port 80 on different virtual servers running VestaCP. I have a server with a permanent IP address on which the virtual server is. The illustration shows that the handling requests of the…
mazorati
  • 2,031
  • 3
  • 22
  • 22
0
votes
1 answer

CPanel/WHM Unknown License File Error

So my issue is like the title suggests. However I have tried the following suggestions from this page…
Joseph Astrahan
  • 8,659
  • 12
  • 83
  • 154
0
votes
1 answer

Want to create staging subdomain e.g staging.example.com

I have e.g www.example.com as my website domain, and now as testing instance I want to add www.staging.example.com. How this can be achieved. I tried searching for solutions on google, but got confused. Any suggestions on this will be greatly…
0
votes
1 answer

localhost is not working in tomcat server

I have modified hosts file and uncomment the 127.0.01 localhost and stop&start 'DNS client' services also, But still it is not working and throwing same error. Cannot Connect The…
0
votes
0 answers

What is the/a correct/proper directory for PHP 7 modules INI files?

Thanks to the issue with enabling/disabling of PHP modules with phpdismod I checked out the structure of the PHP config files on my Ubuntu VM and noticed, that there are two folders for the config includes: /etc/php/mods-available/ and…
automatix
  • 14,018
  • 26
  • 105
  • 230
0
votes
2 answers

Installing Libraries on a Server

I'm fairly noob at the using the terminal and doing server administration. I recently "inherited" a Twitter app, and I need to install a Python OAuth library: http://dev.twitter.com/pages/oauth_libraries#python Unfortunately, I'm pretty much…
captcadaver
  • 1,093
  • 2
  • 9
  • 7
0
votes
1 answer

Prevent wget from recursing into excluded directories

I have mirrored files on a remote Windows server over http using the following wget command on a Mac: wget --execute="robots = off" --mirror -N --no-parent -R '*index.html*' convert-links -nH --cut-dirs=1…
StevieD
  • 6,925
  • 2
  • 25
  • 45
0
votes
0 answers

Same Domino server name but different IP address in same environment

We decided to change our physical Domino Server with a new one. In order to prevent current server from being un-accessible while we configure the new one, we plan to up the new Domino server which has the same domino server name with the existing…
anevil
  • 837
  • 3
  • 11
  • 24
0
votes
1 answer

Manage password complexity in Youtrack

Is it possible, with Youtrack 6.x, to: enforce a password minimal complexity for all user accounts ? reset all passwords at once ? So far, I'm only able to change passwords, one user at a time.
0
votes
1 answer

How to sum first Column on netstat result

I want to count the packets of an interface like ix1 . The result of netstat -I ix1 -w1 is something like this . input (ix1) output packets errs idrops bytes packets errs bytes colls 0 0 0 …
sam
  • 1,363
  • 1
  • 20
  • 32
0
votes
2 answers

Retrieve parameters from file - Windows PowerShell

I am writing a super-easy script in PowerShell. The target of this script is to read a list of server names from a txt file and a command block from another txt file. The result of the operation shold be a third txt file containing the…
BlacK
  • 241
  • 7
  • 16
0
votes
2 answers

Best way to globally change ownership of all system files/dirs belonging to user X and switching to user Y?

I'm taking over a Linux Ubuntu machine from a previous employee whose recently left. I've created an account for myself on the machine. I want to preserve their home directory, but change ownership of any system files and directories outside of…
skålfyfan
  • 4,931
  • 5
  • 41
  • 59
0
votes
1 answer

404 when accessing the integrated WebLogic server console from JDeveloper 12.1.3

I can start the integrated WebLogic application server from JDeveloper and can even deploy and test my servlets, but I cannot access the WebLogic console application (e.g. http://localhost:7101/console). My configuration has the port set as 7101 (my…
Neoheurist
  • 3,183
  • 6
  • 37
  • 55
0
votes
1 answer

Nginx fails to load CSS in a particular location

D I want to use cache for the CSS file on my site, I've this configuration: server { root /webapps/sitoweb; listen 443; ssl on; ssl_certificate /etc/nginx/ssl/bundle.crt; ssl_certificate_key /etc/nginx/ssl/privateKey.key; …
ddtnero
  • 37
  • 1
  • 1
  • 4
0
votes
1 answer

Nginx fails to load static files after I declared them using location

I've configured Nginx as you can see: server { listen 443 ssl; ssl on; ssl_certificate /etc/nginx/ssl/bundle.crt; ssl_certificate_key /etc/nginx/ssl/privateKey.key; location /webmin/ { proxy_pass…