Skip to content
Advertisement

Tag: server

Jelastic – How to fix bash_profile with invalid characters entered when creating environment variables?

In advance, I apologize for my English. It was while researching how to solve the problem that I discovered Jelastic’s recommendations for creating environment variables. Without this knowledge, I created variables like I create in linux, where in case of error, I can edit the bash_profile file easily. Which doesn’t happen on Jelastic servers. The error is that I inserted

NGINX 404 not found but file exists

I want to call the index.html from the folder /var/www/fileUpload/html. The index.html file exists in that folder. The / router works. the uploadFiles route as well. But when I open the upload route I get a 404 error. Do you have any suggestions? Thank you! Answer That should be alias /var/www/fileUpload/html; otherwise Nginx is looking for the file in /var/www/fileUpload/html/upload/index.html.

Why is nginx access.log failing?

I try to use nginx on manjaro by typing up nginx on the terminal, but this comes up:open() “/var/log/nginx/access.log” failed (21: Is a directory). I ran sudo nginx -t and sudo systemctl start nginx.service and they both said the same thing. Is there something I can do to remedy this issue? Also to add, I used systemctl status nginx.service and

Setup Node.JS Server on Ubuntu

I am using the MEAN Stack and I could run my frontend already. After ng build I moved all the content in the dist folder to var/www/html and could access my website. I’m using Apache and my frontend is now available online. The problem is now my backend. I am using Node.js but I have no clue how I can

Change hostname to null in linux [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question

TCP echo server doesn’t accept client

I’m trying to make an echo client server in C. The problem is, when I start the server and run the client code, in client shell it says “Connected” but in server shell it still says “Waiting for connection”. (Server doesn’t say “accept failed”. It says “Waiting for connection” forever). I think server is not accepting client and therefore if

How can I stop the while?

I have A TCP Server-Client where I enter a number with the number of times that I want to send the word to the server. So I send correctly because I print the information on a loop(in client) but in the server shows infinitely because I put while(1) but if I don’t use just print it one time. I don’t

PHP Code Is Not Executed For PHP 7.2 On Aws Ec2 Instance

I am trying to install php on aws ec2 instance. Since php 7.2 is not available, I used following commands to enable few repos as suggested in this Link sudo yum install epel-release sudo yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm sudo yum install yum-utils Then I enabled a remi repo to run using sudo yum-config-manager –enable remi-php72 Then I ran sudo yum install

bash script to auto run on boot, make screen, execute a command and detach

I am using Centos 7 and on boot I would like to: Make a screen Execute a command: osrm-routed –algorithm=MLD ~/osrm-backend/profiles/australia-latest.osrm Detatch from screen (possibly not needed, just as long as I can access it myself after its running in future) Here is something I have thought about, although not correct and wont work filename: mapstart.sh Contents of file: With

Advertisement