TEMP Folder Full
Jul 6, 2007
I have a Linux dedicated server non managed, my os is CentOS I know that my temp folder is full just don't know how to empty it.
root@zone1 [~]# df -k
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda5 149153628 41449148 100127828 30% /
/dev/sdb1 153794688 94284 145888000 1% /backup
/dev/sda1 505604 21588 457912 5% /boot
none 516596 0 516596 0% /dev/shm
/dev/sda3 2063536 1960624 0 100% /tmp
/tmp 2063536 1960624 0 100% /var/tmp
root@zone1 [~]#
Warning: Unknown(): write failed: No space left on device (28) in Unknown on line 0
Warning: Unknown(): Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/tmp) in Unknown on line 0
View 4 Replies
ADVERTISEMENT
Jun 20, 2013
I had a Problem with my FTP-Backup space, so PLESK couldn't do the daily backups that I configured. The problem with the ftp backup is solved. The backups are running again but there are still many large temporary files in a plesk folder.
Can I just delete them, or is this a bad idea?
The folder:
C:Program Files (x86)ParallelsPleskPrivateTemp
Screenshot
View 3 Replies
View Related
Feb 5, 2008
i got whm / centos 4.*
the tmp folder keep hitting 100% i just cleaned yesterday!
it has a 485M size.
/var/tmp
most of extension are *.wrk
View 3 Replies
View Related
Feb 27, 2008
The /usr/tmpDSK folder on my server is full , should I delete the contents in it? or can anyone help me on how to increase its space
View 7 Replies
View Related
May 7, 2007
In phpMyAdmin I see this:
Created_tmp_disk_tables 2,118 The number of temporary tables on disk created automatically by the server while executing statements. If Created_tmp_disk_tables is big, you may want to increase the tmp_table_size value to cause temporary tables to be memory-based instead of disk-based.
Created_tmp_files 0 How many temporary files mysqld has created.
Created_tmp_tables 5,637 The number of in-memory temporary tables created automatically by the server while executing statements.
I have tried upping tmp_table_size but it's no use. My my.cnf file:
Quote:
# Example MySQL config file for very large systems.
#
# This is for a large system with memory of 1G-2G where the system runs mainly
# MySQL.
#
# You can copy this file to
# /etc/my.cnf to set global options,
# mysql-data-dir/my.cnf to set server-specific options (in this
# installation this directory is /var/lib/mysql) or
# ~/.my.cnf to set user-specific options.
#
# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.
# The following options will be passed to all MySQL clients
[client]
#password= your_password
port= 3306
socket= /var/lib/mysql/mysql.sock
# Here follows entries for some specific programs
# The MySQL server
[mysqld]
port= 3306
socket= /var/lib/mysql/mysql.sock
skip-locking
key_buffer = 384M
max_allowed_packet = 1M
table_cache = 384
sort_buffer_size = 2M
read_buffer_size = 2M
read_rnd_buffer_size = 8M
myisam_sort_buffer_size = 64M
thread_cache_size = 8
query_cache_size = 32M
# Try number of CPU's*2 for thread_concurrency
thread_concurrency = 8
tmp_table_size = 300M
max_tmp_tables=100
# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (via the "enable-named-pipe" option) will render mysqld useless!
#
#skip-networking
# Replication Master Server (default)
# binary logging is required for replication
log-bin
# required unique id between 1 and 2^32 - 1
# defaults to 1 if master-host is not set
# but will not function as a master if omitted
server-id= 1
# Replication Slave (comment out master section to use this)
#
# To configure this host as a replication slave, you can choose between
# two methods :
#
# 1) Use the CHANGE MASTER TO command (fully described in our manual) -
# the syntax is:
#
# CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
# MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
#
# where you replace <host>, <user>, <password> by quoted strings and
# <port> by the master's port number (3306 by default).
#
# Example:
#
# CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
# MASTER_USER='joe', MASTER_PASSWORD='secret';
#
# OR
#
# 2) Set the variables below. However, in case you choose this method, then
# start replication for the first time (even unsuccessfully, for example
# if you mistyped the password in master-password and the slave fails to
# connect), the slave will create a master.info file, and any later
# change in this file to the variables' values below will be ignored and
# overridden by the content of the master.info file, unless you shutdown
# the slave server, delete master.info and restart the slaver server.
# For that reason, you may want to leave the lines below untouched
# (commented) and instead use CHANGE MASTER TO (see above)
#
# required unique id between 2 and 2^32 - 1
# (and different from the master)
# defaults to 2 if master-host is set
# but will not function as a slave if omitted
#server-id = 2
#
# The replication master for this slave - required
#master-host = <hostname>
#
# The username the slave will use for authentication when connecting
# to the master - required
#master-user = <username>
#
# The password the slave will authenticate with when connecting to
# the master - required
#master-password = <password>
#
# The port the master is listening on.
# optional - defaults to 3306
#master-port = <port>
#
# binary logging - not required for slaves, but recommended
#log-bin
# Point the following paths to different dedicated disks
#tmpdir= /tmp/
#log-update = /path-to-dedicated-directory/hostname
# Uncomment the following if you are using BDB tables
#bdb_cache_size = 384M
#bdb_max_lock = 100000
# Uncomment the following if you are using InnoDB tables
#innodb_data_home_dir = /var/lib/mysql/
#innodb_data_file_path = ibdata1:2000M;ibdata2:10M:autoextend
#innodb_log_group_home_dir = /var/lib/mysql/
#innodb_log_arch_dir = /var/lib/mysql/
# You can set .._buffer_pool_size up to 50 - 80 %
# of RAM but beware of setting memory usage too high
#innodb_buffer_pool_size = 384M
#innodb_additional_mem_pool_size = 20M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 100M
#innodb_log_buffer_size = 8M
#innodb_flush_log_at_trx_commit = 1
#innodb_lock_wait_timeout = 50
[mysqldump]
quick
max_allowed_packet = 16M
[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates
[isamchk]
key_buffer = 256M
sort_buffer_size = 256M
read_buffer = 2M
write_buffer = 2M
[myisamchk]
key_buffer = 256M
sort_buffer_size = 256M
read_buffer = 2M
write_buffer = 2M
[mysqlhotcopy]
interactive-timeout
This server has 1GB of RAM, not a dedicated sql server though. RAM usage is low too, 567MB of RAM is being used right now total... is there something I'm overlooking?
View 0 Replies
View Related
Jul 12, 2007
I've setup a site on my server through Plesk. The domainname isn't active yet.
What's the temp address that plesk using to access the site?
View 7 Replies
View Related
Dec 25, 2007
I'm trying to install Modernbill v.5 onto a Plesk Server. Now I don't know if this will effect it at all however, the system is a CentOS 5 box running HyperVZ (Virtual Servers) on OpenVZ. Then the VE Environment is running Plesk 8.2 with the newest updates on a CentOS 5 OS also.
Anyways, so I've fixed all the other errors however no matter what I do I continue to get these two errors,
Critical requirements not satisfied. Please prepare a suitable environment before continuing.
You MUST have a writable temporary folder [you do not].
You MUST have the php.ini setting "open_basedir" unset for access to system-level API libraries [you do not].
-----
I have tried all the different varieties of entering the path name to the tmp folder which is set to 777, however it continues to tell me that it can't find the temp directory. Also for the php issue for open_basedir I've commented it out and tried putting it to = none. Again neither of which work even after restarting apache.
View 13 Replies
View Related
Oct 24, 2007
I have a collocated server which I'd like to do some upgrades to. I'm having it shipped back to me so that I can do the upgrades myself. However, since I use this as my primary email server, I need help setting something up so I have no email downtime.
I have a cheap shared hosting account with DreamHost so one idea I have is to point the domain to their servers and handle things through there for a bit. This seems like the "brute force" way to do it though since I have to wait for DNS propagation and what not. Another idea was to use a service like DynDNS' MailHop BackupMX which does storage and forwarding. However, this service is kind of expensive ($30) considering I'm only going to use it a week or so.
View 1 Replies
View Related
Aug 14, 2007
On my VPS I would like to set the /tmp folder to 777 and point to it with session.save_path.
The VPS will host a number of sites, but I will have sole control of them. ie. the account holders will not have access to cpanel.
If it makes any difference, the server is running phpSUexec.
What are the risks involved with this?
View 3 Replies
View Related
Jul 16, 2008
I have two servers.
One server has a folder named 'vidfiles' and I want to transfer this entire folder (all 70gigs) to another server I just got.
Both servers are linux and use CPanal/whm.
What would be the command to get the files to transfer direct from server to server?
View 4 Replies
View Related
Jun 29, 2009
i dont know what is going on exactly
look at this 2 commands
Code:
root@host [/tmp]# ls -hl
total 92K
Code:
root@host [/tmp]# df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda5 10153988 406444 9223428 5% /
/dev/sda8 1019208 900620 65980 94% /tmp
how is that possible ls -hl shows thats the space used is 92kb
while df shows 65980 94% for /tmp
View 5 Replies
View Related
Dec 11, 2008
/var is almost full
I have my /var with 85% of capacity and i need to free some space, this is the print of a du -h --max-depth 1:
Quote:
8,0K./opt
8,0K./nis
1,2G./cache
11M./tmp
40K./empty
24K./db
50M./spool
2,0G./cpanel
334M./log
1,9G./lib
864K./run
12K./net-snmp
8,0K./preserve
8,0K./racoon
23M./named
12K./account
84K./profiles
8,0K./local
8,0K./games
24K./yp
4,0K./portsentry
16K./lost+found
32K./lock
as you can see cpanel is one of the largest, do you know from where i can delete some files to liberate space of my /var?
View 6 Replies
View Related
Feb 13, 2008
I really need some help here. My /usr directory on my server is 95% full. Is there any change that I could change a space limit for this partition without OS reload? And if there is, how to do it?
View 14 Replies
View Related
May 27, 2008
Today I had MySQL and Exim both blow up on me. After some panicking I noticed that the /var directory was 100% full. I cleared out some old logs and got the server back up and running.
I wanted to ask you all how can I
a) identify what is taking up all the space
b) is there anything off the top of your head that I can safely delete?
The drive is 9GB so something other than just log files is filling it up.
View 9 Replies
View Related
Jun 15, 2007
and mysql couldnt restart and i got database error in my forum
how can i delete the non important in the /var/ section
View 14 Replies
View Related
Jan 27, 2007
Drive Critical: hda7 (/tmp) is 100% full
Drive Critical: hda5 (/var) is 91% full
Due to this, my cpsrvd keeps failing.
This might sound dumb, but how do I empty these folders via SSH/WHM?
View 13 Replies
View Related
Jan 2, 2007
/var seems to be almost full but the server has only been up a couple of days. Note that the only file that seems large is /named/chroot/proc/kcore but that is not really supposed to take any disk space ... it obviously is. Does anybody know what I should do to free up space here?
Details follow:
[root@cobalt var]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/hda1 1.9G 700M 1.1G 40% /
/dev/hda2 1.9G 1.6G 151M 92% /var
/dev/hda5 1.9G 33M 1.8G 2% /tmp
/dev/hda6 25G 303M 23G 2% /home
none 379M 0 379M 0% /dev/shm
[root@cobalt var]# du -ha
1.0G ./named/chroot/proc/kcore
14M ./lib/rpm/Packages
1.2M ./lib/rpm/Basenames
1.3M ./lib/rpm/Filemd5s
1.3M ./lib/rpm/__db.002
19M ./lib/rpm
19M ./lib/mysql/ibdata1
5.1M ./lib/mysql/ib_logfile0
5.1M ./lib/mysql/ib_logfile1
4.0K ./lib/mysql/site1/active_guests.MYI
4.0K ./lib/mysql/site1/active_guests.MYD
4.0K ./lib/mysql/site1/active_users.MYI
4.0K ./lib/mysql/site1/address_book.MYI
4.0K ./lib/mysql/site1/address_book.MYD
4.0K ./lib/mysql/site1/address_format.MYI
4.0K ./lib/mysql/site1/address_format.MYD
4.0K ./lib/mysql/site1/banned_users.MYI
4.0K ./lib/mysql/site1/banners.MYI
4.0K ./lib/mysql/site1/banners.MYD
4.0K ./lib/mysql/site1/banners_history.MYI
4.0K ./lib/mysql/site1/banners_history.MYD
4.0K ./lib/mysql/site1/categories.MYI
4.0K ./lib/mysql/site1/categories.MYD
4.0K ./lib/mysql/site1/categories_description.MYI
4.0K ./lib/mysql/site1/categories_description.MYD
4.0K ./lib/mysql/site1/configuration.MYI
24K ./lib/mysql/site1/configuration.MYD
4.0K ./lib/mysql/site1/configuration_group.MYI
4.0K ./lib/mysql/site1/configuration_group.MYD
4.0K ./lib/mysql/site1/counter.MYI
4.0K ./lib/mysql/site1/counter.MYD
4.0K ./lib/mysql/site1/counter_history.MYI
12K ./lib/mysql/site1/countries.MYI
8.0K ./lib/mysql/site1/countries.MYD
4.0K ./lib/mysql/site1/currencies.MYI
4.0K ./lib/mysql/site1/currencies.MYD
4.0K ./lib/mysql/site1/customers.MYI
4.0K ./lib/mysql/site1/customers.MYD
4.0K ./lib/mysql/site1/customers_basket.MYI
4.0K ./lib/mysql/site1/customers_basket.MYD
4.0K ./lib/mysql/site1/customers_basket_attributes.MYI
4.0K ./lib/mysql/site1/customers_info.MYI
4.0K ./lib/mysql/site1/customers_info.MYD
4.0K ./lib/mysql/site1/geo_zones.MYI
4.0K ./lib/mysql/site1/geo_zones.MYD
4.0K ./lib/mysql/site1/info_about_us.MYI
4.0K ./lib/mysql/site1/info_about_us.MYD
4.0K ./lib/mysql/site1/info_conditions.MYI
32K ./lib/mysql/site1/info_conditions.MYD
4.0K ./lib/mysql/site1/info_privacy.MYI
28K ./lib/mysql/site1/info_privacy.MYD
4.0K ./lib/mysql/site1/info_shipping.MYI
8.0K ./lib/mysql/site1/info_shipping.MYD
4.0K ./lib/mysql/site1/languages.MYI
4.0K ./lib/mysql/site1/languages.MYD
4.0K ./lib/mysql/site1/manufacturers.MYI
4.0K ./lib/mysql/site1/manufacturers.MYD
4.0K ./lib/mysql/site1/manufacturers_info.MYI
4.0K ./lib/mysql/site1/manufacturers_info.MYD
8.0K ./lib/mysql/site1/msistuff_searchindex.MYI
4.0K ./lib/mysql/site1/msistuff_searchindex.MYD
4.0K ./lib/mysql/site1/msistuff_user_newtalk.MYI
4.0K ./lib/mysql/site1/newsletters.MYI
4.0K ./lib/mysql/site1/orders.MYI
4.0K ./lib/mysql/site1/orders_products.MYI
4.0K ./lib/mysql/site1/orders_products_attributes.MYI
4.0K ./lib/mysql/site1/orders_products_download.MYI
4.0K ./lib/mysql/site1/orders_status.MYI
4.0K ./lib/mysql/site1/orders_status.MYD
4.0K ./lib/mysql/site1/orders_status_history.MYI
4.0K ./lib/mysql/site1/orders_total.MYI
4.0K ./lib/mysql/site1/products.MYI
4.0K ./lib/mysql/site1/products.MYD
4.0K ./lib/mysql/site1/products_attributes.MYI
4.0K ./lib/mysql/site1/products_attributes.MYD
4.0K ./lib/mysql/site1/products_attributes_download.MYI
4.0K ./lib/mysql/site1/products_attributes_download.MYD
4.0K ./lib/mysql/site1/products_description.MYI
48K ./lib/mysql/site1/products_description.MYD
4.0K ./lib/mysql/site1/products_notifications.MYI
4.0K ./lib/mysql/site1/products_options.MYI
4.0K ./lib/mysql/site1/products_options.MYD
4.0K ./lib/mysql/site1/products_options_values.MYI
4.0K ./lib/mysql/site1/products_options_values.MYD
4.0K ./lib/mysql/site1/products_options_values_to_products_options.MYI
4.0K ./lib/mysql/site1/products_options_values_to_products_options.MYD
4.0K ./lib/mysql/site1/products_to_categories.MYI
4.0K ./lib/mysql/site1/products_to_categories.MYD
4.0K ./lib/mysql/site1/reviews.MYI
4.0K ./lib/mysql/site1/reviews.MYD
4.0K ./lib/mysql/site1/reviews_description.MYI
4.0K ./lib/mysql/site1/reviews_description.MYD
8.0K ./lib/mysql/site1/sessions.MYI
60K ./lib/mysql/site1/sessions.MYD
4.0K ./lib/mysql/site1/specials.MYI
4.0K ./lib/mysql/site1/specials.MYD
4.0K ./lib/mysql/site1/tax_class.MYI
4.0K ./lib/mysql/site1/tax_class.MYD
4.0K ./lib/mysql/site1/tax_rates.MYI
4.0K ./lib/mysql/site1/tax_rates.MYD
4.0K ./lib/mysql/site1/users.MYI
4.0K ./lib/mysql/site1/users.MYD
4.0K ./lib/mysql/site1/whos_online.MYI
4.0K ./lib/mysql/site1/whos_online.MYD
4.0K ./lib/mysql/site1/zones.MYI
8.0K ./lib/mysql/site1/zones.MYD
4.0K ./lib/mysql/site1/zones_to_geo_zones.MYI
4.0K ./lib/mysql/site1/zones_to_geo_zones.MYD
1.6M ./lib/mysql/site1
31M ./lib/mysql
50M ./lib
1.5M ./log/messages
5.0M ./log/httpd/access_log
4.2M ./log/httpd/access_log.1
5.6M ./log/httpd/access_log.2
6.5M ./log/httpd/access_log.3
7.5M ./log/httpd/access_log.4
6.5M ./log/httpd/error_log.1
1.2M ./log/httpd/error_log.2
37M ./log/httpd
1.5M ./log/admserv/adm_access.2
2.0M ./log/admserv
3.2M ./log/messages.1
4.0M ./log/messages.2
49M ./log
3.2M ./cache/yum/base/primary.xml.gz.sqlite
3.8M ./cache/yum/base
1.1M ./cache/yum/BlueQuartz
5.7M ./cache/yum
6.1M ./cache
1.9M ./www
1.9M ./analog-5.32/lang
1.9M ./analog-5.32
View 4 Replies
View Related
Jan 7, 2007
Once ago you people solved my problem, now once again i am here to get some suggestion from you since i could not find anyone else for help.
I have another server (Which is not under Your Management subscription), its /tmp DRIVE is 100% full.
I have 2 scripts which are same as "RapidShare.de or megaupload" FREE FILE HoSTING scripts... they use space in /tmp my /tmp is 496 Mb.
Because its full 100% so files are no more uploadable via scripts. So my scripts are not funsctioning at the moment.
So i thought to get a suggestion from you people
is that possible to increase the size of /tmp ? like to 20 GB etc or if NOT than could you please tell how to empty /tmp folder (coz i think all files in /tmp used by SCRIPTS are USELESS after the USER uploads or downloads the data.) so could you please suggest..
View 6 Replies
View Related
Jun 30, 2009
I have two dedicated servers..
On one of my servers, its 100% full and my 2nd one it's /dev/sda6 (/usr) is 89%.
Can someone tell me what partion on a linux based server this is usually used for, and the steps by ssh I can do to clear it out?
View 8 Replies
View Related
Jun 5, 2009
my /var is full any idea what to delete
root@host [/var]# du -sh *
12K account
16K aquota.user
13M cache
188M cpanel
28K db
32K empty
8.0K games
73M lib
8.0K local
32K lock
35M log
16K lost+found
4.0K mail
7.5G named
8.0K nis
8.0K opt
4.0K portsentry
8.0K preserve
92K profiles
12K quota.user
8.0K racoon
900K run
6.5M spool
8.7M tmp
24K yp
root@host [/var]#
---
even i can move named folder if some one guide how to move and change the path in conf because i dont no the location of conf files etc
*mod if i am on wrong place move it*
View 14 Replies
View Related
Nov 25, 2008
i have problem and make all solution and the problem stay
the /usr partition is full 100%
i remove all logs in :
/usr/local/apache/logs
/usr/local/apache/domlogs
and make du -h --max-depth=1 in /usr that's the monitor :
Code:
76K ./doc
37M ./sbin
366M ./src
110M ./X11R6
14M ./php4
176K ./man
16K ./lost+found
24M ./evolution28
2.2G ./local
12K ./etc
19M ./libexec
1.2G ./share
62M ./include
181M ./bin
362M ./java
958M ./lib
1.4M ./kerberos
6.4G .
View 7 Replies
View Related
Aug 6, 2008
I have 10 GB partition and we have mount /var direcotry and now it has been full 97% what can i do and how to manage it and i have no other option because no other space is available to create new partition and mount there.
View 10 Replies
View Related
May 10, 2008
Weve got a server where the /var is setup at 7gb, which is now %100 full.
Weve deleted the common logs we always notice, but thats only gotten us down to %94.
Anyone have any ideas what we should be cleaning or a good script that might help?
seems 5.5gb of data is in /lib
What is safe to delete from /lib and why is it taking up so much space?
View 4 Replies
View Related
Oct 26, 2008
We have 2X 250 GB HDD on server
home is on HDD 1 and usage is 73G
now in backup process we receive message from server that backup ( hdd 2 )is %100 full! while total home usage is 73 G
and below is PART of ls -l report in ssh, report show incorrect 4046 usage for all!
drwxr-x--- 26 root wwwbzzz 4096 Oct 26 06:46 wwwbzzz/
drwxr-x--- 26 root xmg86hin 4096 Oct 26 06:34 xmg86hin/
drwxr-x--- 26 root yil67ymi 4096 Oct 26 08:13 yil67ymi/
drwxr-x--- 26 root yrcsama 4096 Oct 26 04:43 yrcsama/
drwxr-x--- 26 root zaytginpar 4096 Oct 26 06:34 zaytginpar/
drwxr-x--- 26 root zyhgo 4096 Oct 26 06:34 zyhgo/
drwxr-x--- 26 root z878erc 4096 Oct 26 08:13 z878erc/
drwxr-x--- 26 root zihgfratn 4096 Oct 26 06:34 zihgfratn/
View 12 Replies
View Related
Jun 11, 2008
we want a dedicated server with a full range of ip with our own company name(or with my name) and abuse mail
+ kvm and apc access
we need a good support too , for example if we want to check our hard disk the provider check it fast
View 5 Replies
View Related