Help Me !!
VMware Error
![]()
Help Me !!
VMware Error
![]()
hmm i have it 2 sometimes..
but not always :P
Hello.
I got a problem :smurf: ... i made everything like in your video maki ... but when i write yum install openssl097a db4 in putty it gives me this error :
[root@cabal ~]# cd /
[root@cabal /]# yum install openssl097a db4
Could not retrieve mirrorlist http://mirrorlist.centos.org/?releas...6&repo=updates error was
[Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Error: Cannot retrieve repository metadata (repomd.xml) for repository: update. Please verify its path and try again
What i can do about this? :scratch:
Or i can just pass this? Or it is important? idk ... its the first time i run a cabal server ...
Thank you in advance xD
Ok. Sry for posting again ...
But i readed some post from this topic and now i wanna ask ... how to setup correctly the CentOS-5 network? I think that this is my problem because the errors says : "Could not retrieve mirrorlist" from a link ... and that link need internet connection to work ... and i saw that when i use the settings for the local area network from this video i cannot access the internet -.-" only if i change them back to the default ...
So there is any fix for this problem? or a guide?
google search
ORFirst, prepare the directories to receive the repository files. Yum uses HTTP to get the repository metadata as well as the files, hence the use of Apache; thusly, we will be creating the repository in a directory that is accessible via HTTP. For my install, I used Apache 2.2 on FreeBSD 6.2, creating the repository for CentOS 5.
In a default install of Apache 2.2, the base serving directory is: /usr/local/www/apache22/data/. As such, this is what will be used in all examples. If you have installed or configured Apache with options to use a different directory (or you wish to symlink a directory, you should already know how to adjust these instructions).
Create the directory tree for both OS and Updates:
mkdir -pv /usr/local/www/apache22/data/centos/5/{os,updates}
Next we will populate populate the folders; currently this requires ~4GB. This will also likely take several hours, depending on your connection. To make this process faster, select the mirror closest to you from the CentOS Mirror List. Make sure you use one that supports RSYNC. If you wish to use a different mirror, replace rsync://centos.arcticnetwork.ca with the rsync address of the mirror you wish to use. Enter the following commands:
/usr/local/bin/rsync -avrt --delete rsync://centos.arcticnetwork.ca/centos/5/os/i386 --exclude=debug/ /usr/local/www/apache22/data/centos/5/os/
/usr/local/bin/rsync -avrt --delete rsync://centos.arcticnetwork.ca/centos/5/updates/i386 --exclude=debug/ /usr/local/www/apache22/data/centos/5/updates/
While the repository is being populated we will prepare the CentOS systems to use the local repository being created. Make a copy of the existing CentOS-Base.repo by typing:
cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bkp
This will allow you to restore the original repo file if you decide at a later date to turn down your local repository.
Next, edit /etc/yum.repos.d/CentOS-Base.repo and delete the contents. Copy/paste the following into the file and update the IP address information to reflect the IP of the server that will host the repository data.
#Localized Base Repo
[base]
name=CentOS-$releasever - Base
baseurl=http://172.16.x.x/centos/$releasever/os/$basearch/
gpgcheck=1
gpgkey=http://172.16.x.x/centos/RPM-GPG-KEY-CentOS-5
#Localized Updates Repo
[update]
name=CentOS-$releasever - Updates
baseurl=http://172.16.x.x/centos/$releasever/updates/$basearch/
gpgcheck=1
gpgkey=http://172.16.x.x/centos/RPM-GPG-KEY-CentOS-5
#Default Base Repo
#Uncomment these to enable checking of internet-based CentOS repositories.
#[base]
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
#gpgcheck=1
#gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5
#Default Updates Repo
#Uncomment these to enable checking of internet-based CentOS repositories.
#[update]
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
#baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
#gpgcheck=1
#gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5
When the repository has finished updating, you are now free to run yum update. If you have any issues, check all the above steps and details. I chose 3AM daily as a personal preference, change this to whatever suits your needs.
As a final step, you might want to automate the update of the repository. To do this, edit root’s crontab to have the following included:
0 3 * * * /usr/local/bin/rsync -avrt --delete rsync://centos.arcticnetwork.ca/centos/5/updates/i386 --exclude=debug/ /usr/local/www/apache22/data/centos/5/updates/
0 3 * * * /usr/local/bin/rsync -avrt --delete rsync://centos.arcticnetwork.ca/centos/5/os/i386 --exclude=debug/ /usr/local/www/apache22/data/centos/5/os/
it a guide how to make local mirror to update or install without connect internet.Sometimes it can be handy to set up your own repository to prevent from downloading the remote repository over and over again. This tutorial shows how to create a CentOS mirror for your local network. If you have to install multiple systems in your local network then all needed packages can be downloaded over the fast LAN connection, thus saving your internet bandwidth.
Create the Directories:
mkdir -pv /var/www/html/centos/4/{os,updates}/i386
Replacing 4 and i386 with your major version and architecture.
Additionally you’ll need some deeper directories. This is the correct location to copy the CD/DVD rpms.
Quote:
mkdir -pv /var/www/html/centos/4/os/i386/CentOS/RPMS/
The Base Repository
Copy the RPMs from the CDs/DVD to /var/www/html/centos/base.
Create the base repository headers:
createrepo /var/www/html/centos/4/os/i386/
The Updates Repository
Select an rsync mirror for updates: check out this list of aviable mirrors: Centos OS Mirror list and these are identified with rsync.
For example: rsync://ftp.belnet.be/packages/centos/
The mirrors share a common structure for updates. Simply append /updates/<d version>/<base arch>.
Rsync to create the updates-released repository:
/usr/bin/rsync -avrt rsync://ftp.riken.jp/centos/4/updates/i386 –exclude=debug/ /var/www/html/centos/4/updates/
This will create a complete update repository at /var/www/html/centos/4/updates/i386. The repodata directory will be created with all of the headers.
You can additionally pipe this into mail to receive an email when updates are available.
/usr/bin/rsync -avrt rsync://ftp.riken.jp/centos/4/updates/i386 –exclude=debug /var/www/html/centos/4/updates/ | /bin/mail you@example.com -s “New Repo Updates”
Next I would advise to setup a cron job to run the rsync (above). In this manner your repository is kept updated and only new updates and headers will be downloaded to your repository.
Yum Configuration
Edit yum.conf:
vi /etc/yum.repos.d/CentOS-Base.repo
[base]
name=CentOS-$releasever - Base
baseurl=http://192.168.*.*/centos/$releasever/os/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5
#released updates
[update]
name=CentOS-$releasever - Updates
baseurl=http://192.168.*.*/centos/$releasever/updates/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
#baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5That’s it.
Last edited by codename; 24-07-08 at 03:45 AM. Reason: ^^
[ENGLISH]
Hello such, I have a problem, my client tells me ue can not connect to server when trying to connect my ip Cent 192.168.21.128 and are in Windows is 200.125.21.18 and fix all the files in all directories with these ip's not me but even connects the internal my client I have the ip of Windows and it also connects please thank them a solution that post since I have seen that I am not alone with the problem, thank you very much and forgive the inconvenience caused.
[SPANISH]
Hola que tal, tengo un problema, mi cliente me dice ue no se puede conectar al servidor en el momento de intentar conectar, mis ip son CentOS 192.168.21.128 y en el Windows es 200.125.21.18 ya arregle todos los archivos en todos los directorios con dichas ip's pero aun no me conecta, el internal de mi cliente le tengo el ip del windows y no conecta tampoco por favor les agradeceria que postearan alguna solucion ya que he visto que no soy el unico con el problema, muchas gracias y disculpen las molestias causadas.:scratch:
![]()
i got this error its not like what in the video.. can any one help??
after i type "service cabal start" nothing is going on.. its just come on another line.. look at the screen shot
![]()
Ok i have solve the prob.. any one with this prob can ask me... :)
EDIT:
wrong topic TAB :|
try "ps -ax" and see if it runs even though it didn`t show.
something like this will show :
12865 ? S<l 0:00 GlobalDBAgent
12907 ? S<l 0:00 DBAgent_24
12944 ? S<l 0:00 GlobalMgrSvr
12977 ? S<l 0:00 ChatNode_24
13017 ? S<l 0:01 LoginSvr_01
13049 ? S<l 0:00 CashDBAgent
13091 ? S<l 3:52 WorldSvr_24_01
this tutorial is for windows too?
I have error when buy "105 B2F" from F.Ruina's PNC.
em... i have follow all the steps on mahi video... but what is the account ID?? and where can i creat the??
I need help to edit my skill exp here.....may some one help me :
[Multiple] All_M PC_M Free_P FreePC_P Premium_P PremiumPC_P Remark
0 100 100 0 0 0 0
[QUOTE=Bobthebadstar;3771449]I need help to edit my skill exp here.....may some one help me :
[Multiple] All_M PC_M Free_P FreePC_P Premium_P PremiumPC_P Remark
0 100 100 0 0 0 0
thankx for the info....but where the question was more likely where should i edit the number for my ( 30/100 ) skill exp.
The easiest way would be to change all the numbers to the one you want.
somebody knows as I arrange this error I more than execute it in query to this error.
Server: Msg 515, Level 16, State 2, Procedure cabal_tool_registerAccount, Line 10
Cannot insert the value NULL into column 'Password', table 'ACCOUNT.dbo.cabal_auth_table'; column does not allow nulls. INSERT fails.
The statement has been terminated.
Server: Msg 515, Level 16, State 2, Procedure cabal_tool_registerAccount, Line 16
Cannot insert the value NULL into column 'UserNum', table 'ACCOUNT.dbo.cabal_charge_auth'; column does not allow nulls. INSERT fails.
The statement has been terminated.
(1 row(s) affected)
I already executed I command md5 I was without error alone this that in you going somebody could help me. oks uses tranlate is brazil