How to find whatever files on Linux vps hosting?

Jovani

Active member
Joined
Jul 10, 2012
Messages
338
Points
28
Hi there, are there any ways to find whatever files on Linux vps hosting, even I didn't know where it's located?

thanks in advanced!
 

hoangvu

New member
Joined
Jun 6, 2012
Messages
1,844
Points
0
Hi there, are there any ways to find whatever files on Linux vps hosting, even I didn't know where it's located?

thanks in advanced!
Normally, the web server or service installed on your server can use one configuration file management. Each service has a configuration file with a different path. If you do not remember where configuration files stored so where you must go to. Fortunately, Linux has a tool to help you easily find the file path that you are searching for.
For example, to search for the PHP configuration file, named php.ini , you would use the following command:
Code:
find / -name php.ini
For / which is the directory path you want to find (I used to use the root directory), the file name php.ini
Locate command has the same effect on more servers but not at all can use and you should give it a try:
Code:
locate php.ini
Hope it helps!
 

buzybee-kevin

New member
Joined
Oct 26, 2014
Messages
83
Points
0
Allot of time mlocate is not installed so locate will not work. So do this!

yum install mlocate

then run "updatedb" You should run this commanded to updated mlocate database. If you do not do this you may not be able to find the file you are looking for even if it is actually there. The reason this happens is the location of the file has not been updated in mlocates database.
 
Older threads
Newer threads
Replies
5
Views
3,272
Replies
9
Views
6,661
Latest threads
Replies
2
Views
101
Replies
9
Views
175
Replies
2
Views
93
Recommended threads
Replies
8
Views
4,266
Replies
0
Views
3,346
Replies
4
Views
2,603
Replies
4
Views
2,189
Replies
3
Views
2,512

Latest postsNew threads

Referral contests

Referral link for :

Sponsors

Popular tags

You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an alternative browser.

Top